diff --git a/pcbnew/toolbars_update_user_interface.cpp b/pcbnew/toolbars_update_user_interface.cpp index 165e475f1a..ee8094125a 100644 --- a/pcbnew/toolbars_update_user_interface.cpp +++ b/pcbnew/toolbars_update_user_interface.cpp @@ -282,6 +282,8 @@ void WinEDA_PcbFrame::SetToolbars() PrepareLayerIndicator(); DisplayUnitsMsg(); - if(m_auimgr.GetManagedWindow()) - m_auimgr.Update(); +#ifdef __WXMAC__ + // Needed to avoid cursor tail + this->Refresh(); +#endif }