From 0bde39ffac2dfc65fd12486dbd98844f0343275c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 16 Oct 2008 12:32:39 +0000 Subject: [PATCH] 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 --- src/unix/evtloopunix.cpp | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.50.0