Build fix in wxLog

Moved wxFrame::Resize without success..


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1025 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-11-23 13:42:14 +00:00
parent e52f60e652
commit 06405ac80b
3 changed files with 17 additions and 3 deletions

View File

@@ -191,6 +191,13 @@ bool wxFrame::Show( bool show )
m_sizeSet = FALSE;
GetEventHandler()->ProcessEvent( event );
*/
// here we give wxFrame a chance to do resize updates
// before appearing on screen. resize updates have to
// be handled in idle time because of GTK's super smart
// resize propagation algorithm.
wxYield();
}
return wxWindow::Show( show );
}