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
This commit is contained in:
Vadim Zeitlin 2008-10-16 12:32:39 +00:00
parent a62e6836ae
commit 0bde39ffac

View File

@ -149,6 +149,7 @@ bool wxConsoleEventLoop::Pending() const
bool wxConsoleEventLoop::Dispatch()
{
m_dispatcher->Dispatch();
wxTheApp->ProcessPendingEvents();
return true;
}