diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index ff0f559cb..2edfa746a 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -1691,6 +1691,11 @@ wxBoxSizer* MainFrame::create_side_tools() m_filament_group_popup = new FilamentGroupPopup(m_slice_btn); auto try_hover_pop_up = [this]() { +#ifdef __APPLE__ + if (!IsActive()) { + return; + } +#endif wxPoint pos = m_slice_btn->ClientToScreen(wxPoint(0, 0)); pos.y += m_slice_btn->GetRect().height * 1.25; pos.x -= (m_slice_option_btn->GetRect().width + FromDIP(380) * 0.6);