Issue651

classification
Title Bizarre Window Resizing when (default-toolbar-position 'left)
Type defect Module core code 21.5
Severity inconvenience Platform xt
Keywords Nosy List mike, rz
explanation
process
These controls should only be changed by committers and tracker administrators.
Status new   Reason
Superseder  
Priority normal   Assigned To

Created on 2009-12-30.17:51:27 by rz, last changed 2010-08-12.16:12:54 by jsparkes.

Messages
msg2202 [hidden] ([hidden]) Date: 2010-08-12.16:12:54
  Message-ID: <1281629574.82.0.709792559716.issue651@xemacs.org>
The best way to change the frame size is using the default-frame-plist 
variable.  You can either use setq or customize.  Whenever a new frame 
is created, any properties in that list are applied.  You want to set 
height and width, which are in characters, not pixels.  I have (setq 
default-frame-plist '(width 80 height 45)) in my startup file, although 
it's probably better to use customize.

There are functions set-frame-pixel-height and set-frame-displayable-
pixel-height but they don't make the frame window the exact size you 
specify.  This is probably due to internal and window manager borders, 
and rounding off to character sizes.

None of this fixes the actual bug of course, but you should be able to 
configure XEmacs to occupy the entire screen space.
msg2044 [hidden] ([hidden]) Date: 2009-12-30.17:51:27
  Message-ID: <1262195487.49.0.258276756074.issue651@xemacs.org>
What I am trying to do is to fill the whole usable screen on a netbook.
So I set .Xdefaults XEmacs*EmacsFrame.geometry to something larger than
screen size. Xemacs starts, filling the whole screen, then as
.xemacs/custom.el is evaluated it redisplays toolbar in a different
place. Next the window is made smaller by the space the toolbar did
originally ocupy and still much smaller than the specified .Xdefaults
property.
On a netbook the wasted screen space is quite noticeable and the same
happens when toolbar is disabled completely.

This behaviour defeats even the maximus window manager utility that is
supposed to maximise windows by defaults on netbooks.

Are there better ways to set window size than .Xdefaults?
History
Date User Action Args
2010-08-12 16:12:54jsparkessetmessages: + msg2202
2009-12-30 17:51:27rzcreate