]> git.saurik.com Git - wxWidgets.git/commitdiff
Added call to top-level window OnInternalIdle
authorJulian Smart <julian@anthemion.co.uk>
Tue, 15 Jul 2003 10:24:30 +0000 (10:24 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 15 Jul 2003 10:24:30 +0000 (10:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21983 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/framecmn.cpp

index e4456b0da6ed98225131d868aaa55d74a0c14ace..4abe465d336fe16bd33dd8658e0a18085245bd6b 100644 (file)
@@ -250,6 +250,8 @@ void wxFrameBase::OnMenuHighlight(wxMenuEvent& event)
 // Implement internal behaviour (menu updating on some platforms)
 void wxFrameBase::OnInternalIdle()
 {
+    wxTopLevelWindow::OnInternalIdle();
+    
 #if wxUSE_MENUS && wxUSE_IDLEMENUUPDATES
     if (wxUpdateUIEvent::CanUpdate(this))
         DoMenuUpdates();