Only update the toolbar buttons if the toolbar is visible

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@52974 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2008-04-02 10:03:40 +00:00
parent ea0fabb19a
commit ccae5408e6

View File

@@ -686,7 +686,7 @@ void wxToolBar::OnInternalIdle()
}
}
if (wxUpdateUIEvent::CanUpdate(this))
if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
}