From: Vadim Zeitlin Date: Thu, 16 Oct 2008 12:32:39 +0000 (+0000) Subject: Dispatch() must dispatch the real events and not only the pending ones accumulated... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0bde39ffac2dfc65fd12486dbd98844f0343275c?ds=inline Dispatch() must dispatch the real events and not only the pending ones accumulated in wxApp git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56357 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/unix/evtloopunix.cpp b/src/unix/evtloopunix.cpp index ec07e2559d..76272844d3 100644 --- a/src/unix/evtloopunix.cpp +++ b/src/unix/evtloopunix.cpp @@ -149,6 +149,7 @@ bool wxConsoleEventLoop::Pending() const bool wxConsoleEventLoop::Dispatch() { + m_dispatcher->Dispatch(); wxTheApp->ProcessPendingEvents(); return true; }