]> git.saurik.com Git - wxWidgets.git/commitdiff
Applied #11236: Event from thread not processed
authorJulian Smart <julian@anthemion.co.uk>
Thu, 24 Sep 2009 15:42:18 +0000 (15:42 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 24 Sep 2009 15:42:18 +0000 (15:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62086 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/app.cpp

index e8718ccdd916280b890dc94987242aebf5200370..0e79d4627f32896f9f4b52139eb8d21b15c85f3d 100644 (file)
@@ -820,6 +820,10 @@ void wxApp::WakeUpIdle()
             }
         }
     }
+#if wxUSE_THREADS
+    else
+        wxWakeUpMainThread();
+#endif // wxUSE_THREADS
 }
 
 // ----------------------------------------------------------------------------