git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61995
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxSize wxTopLevelWindowBase::GetDefaultSize()
{
wxSize size = wxGetClientDisplayRect().GetSize();
wxSize wxTopLevelWindowBase::GetDefaultSize()
{
wxSize size = wxGetClientDisplayRect().GetSize();
+#ifndef __WXOSX_IPHONE__
// create proportionally bigger windows on small screens
if ( size.x >= 1024 )
size.x = 400;
// create proportionally bigger windows on small screens
if ( size.x >= 1024 )
size.x = 400;
size.y *= 2;
size.y /= 3;
}
size.y *= 2;
size.y /= 3;
}