Hi,
The height of the main window can't be smaller than 400.
Regards,
Rob.
--- src/lyx_gui.C Tue Jul 11 20:36:40 2000
+++ src/lyx_gui.C Tue Jul 11 20:53:56 2000
@@ -141,8 +141,9 @@ LyXGUI::LyXGUI(LyX * owner, int * argc,
// X Error handler install goes here
XSetErrorHandler(LyX_XErrHandler);
- // A width less than 590 pops up an awkward main window
+ // The minimal values of width/height (590/400) are defined in
src/lyx.C
if (width < 590) width = 590;
+ if (height < 400) height = 400;
// If width is not set by geometry, check it against monitor
width
if ( !(geometryBitmask & 4) ) {