git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62898
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void wxTopLevelWindowGTK::DoSetClientSize(int width, int height)
{
void wxTopLevelWindowGTK::DoSetClientSize(int width, int height)
{
+ wxTopLevelWindowBase::DoSetClientSize(width, height);
+
// Since client size is being explicitly set, don't change it later
// Since client size is being explicitly set, don't change it later
+ // Has to be done after calling base because it calls SetSize,
+ // which sets this true
m_deferShowAllowed = false;
m_deferShowAllowed = false;
-
- wxTopLevelWindowBase::DoSetClientSize(width, height);
}
void wxTopLevelWindowGTK::DoGetClientSize( int *width, int *height ) const
}
void wxTopLevelWindowGTK::DoGetClientSize( int *width, int *height ) const