]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/evtloop.cpp
Include missing.h to find O_* flags.
[wxWidgets.git] / src / gtk / evtloop.cpp
index acca1472fe639a9c0f136529e9c88e2f9216232c..74d4132b432737bc1b6be2efa7d14010488fbca2 100644 (file)
@@ -31,6 +31,7 @@
 #ifndef WX_PRECOMP
 #endif //WX_PRECOMP
 
+#include "wx/app.h"
 #include "wx/evtloop.h"
 
 #include <gtk/gtk.h>
@@ -103,9 +104,20 @@ void wxEventLoop::Exit(int rc)
 // wxEventLoop message processing dispatching
 // ----------------------------------------------------------------------------
 
+extern bool g_isIdle;
+
 bool wxEventLoop::Pending() const
 {
-    return gtk_events_pending() > 0;
+    if (wxTheApp && !g_isIdle)
+    {
+        // We need to remove idle callbacks or gtk_events_pending will
+        // never return false.
+        gtk_idle_remove( wxTheApp->m_idleTag );
+        wxTheApp->m_idleTag = 0;
+        g_isIdle = TRUE;
+    }
+
+    return gtk_events_pending();
 }
 
 bool wxEventLoop::Dispatch()