> 
> Also, is anyone else running gimp? I'm having funny resizing issues with
> the main window - the buttons all squashed up, or not spreading out
> properly. Wondering if that's a resize increment problem?
> 

it kind of was.  gimp sets min_width and _height along with width and height
_inc but it does not set base_width or _height.  The code was based on the
assumption that base_* was always set if *_inc was set.

Before updating to the new cvs run xprop on xwininfo on gimp.  It reports the
size is 4x4 yet blackbox says 5x7.

the inc is 28.  By default gimp is 30 + (28 * 4) wide and 108 + (28 * 4) high
which is 142x220.  If you divide that by 28 you get 5x7.

An interesting note is Window Maker reports the size as 5x7 but actually does
the right thing internally so the resize works.

if the 4x4 and 5x7 above seems confusing, according to the ICCCM if an app
requests resize steps the window's size should be shown in terms of those steps
and not in pixels.  This is why a rxvt defaults to 80x24 even though the real
pixel dimension or like 580x340.

Reply via email to