Applied patch for stipppled brushes,

Corrected idle behaviour after popmenu call


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3289 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-08-05 11:14:07 +00:00
parent 867673d4f2
commit 956dbab1eb
7 changed files with 81 additions and 86 deletions

View File

@@ -2909,7 +2909,11 @@ bool wxWindow::DoPopupMenu( wxMenu *menu, int x, int y )
0 //gs_timeLastClick // the time of activation
);
while (is_waiting) wxYield();
while (is_waiting)
{
while (gtk_events_pending())
gtk_main_iteration();
}
return TRUE;
}