wxRect rect = wxGetClientDisplayRect();
wxSize sizeMax (rect.width,rect.height);
+ // Sorry, but this bit is wrong -- it makes a window that should just be
+ // able to fit onto the screen, not fit on the screen. -- JACS
+#if 0
// Make the max size a bit smaller than the visible portion of
// the screen. A window which takes the entire screen doesn't
// look very nice either
sizeMax.y *= 9;
sizeMax.y /= 10;
+#endif
return sizeMax;
}