]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/app.cpp
Typo fix
[wxWidgets.git] / src / gtk / app.cpp
index 20050e11b609230f04ae803efd256a6699c72b11..43d42a540f3b96bd3c0788141d24415f83509328 100644 (file)
@@ -501,8 +501,6 @@ bool wxApp::SendIdleEvents( wxWindow* win )
 
     win->GetEventHandler()->ProcessEvent(event);
 
-    win->OnInternalIdle();
-
     if (event.MoreRequested())
         needMore = TRUE;
 
@@ -516,6 +514,8 @@ bool wxApp::SendIdleEvents( wxWindow* win )
         node = node->Next();
     }
     
+    win->OnInternalIdle();
+
     return needMore;
 }