Moved wxFrame::Resize without success..
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1025
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
wxString strTime = TimeStamp();
{
wxString strTime = TimeStamp();
- #if (defined(__WIN32__) || defined(__WIN16__)) && !defined(__WXSTUBS__)
// don't prepend debug/trace here: it goes to the debug window
// anyhow, but do put a timestamp
OutputDebugString(strTime + szString + "\n\r");
// don't prepend debug/trace here: it goes to the debug window
// anyhow, but do put a timestamp
OutputDebugString(strTime + szString + "\n\r");
// send them to stderr
fprintf(stderr, "%s %s: %s\n",
strTime.c_str(),
level == wxLOG_Trace ? _("Trace") : _("Debug"),
szString);
fflush(stderr);
// send them to stderr
fprintf(stderr, "%s %s: %s\n",
strTime.c_str(),
level == wxLOG_Trace ? _("Trace") : _("Debug"),
szString);
fflush(stderr);
m_sizeSet = FALSE;
GetEventHandler()->ProcessEvent( event );
*/
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 );
}
}
return wxWindow::Show( show );
}
m_sizeSet = FALSE;
GetEventHandler()->ProcessEvent( event );
*/
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 );
}
}
return wxWindow::Show( show );
}