diff --git a/src/slic3r/GUI/GLToolbar.cpp b/src/slic3r/GUI/GLToolbar.cpp index be97e52e84..234340dc6b 100644 --- a/src/slic3r/GUI/GLToolbar.cpp +++ b/src/slic3r/GUI/GLToolbar.cpp @@ -792,8 +792,8 @@ void GLToolbar::do_action(GLToolbarItem::EActionType type, int item_id, GLCanvas } if (m_type == Normal && item->get_state() != GLToolbarItem::Disabled) { - // the item may get disabled during the action, if not, set it back to normal state - item->set_state(GLToolbarItem::Normal); + // the item may get disabled during the action, if not, set it back to hover state + item->set_state(GLToolbarItem::Hover); parent.render(); } }