Sun May 28 11:48:09 PDT 2000

(KainX)

There's nothing illegal about base width/height being zero, so don't
force it to be no less than 1.


SVN revision: 2720
This commit is contained in:
Michael Jennings 2000-05-28 18:27:38 +00:00
parent a9f3232d4d
commit ce09b96f5a
2 changed files with 8 additions and 4 deletions

View File

@ -4674,3 +4674,11 @@ on ALT-SHIFT-Button1 that swaps windows that belong to a group.
Can be disabled in the global groups dialog. Play with it, it's fun :)
Also minor tweaks to the Ganymede Eterm theme.
-------------------------------------------------------------------------------
Sun May 28 11:48:09 PDT 2000
(KainX)
There's nothing illegal about base width/height being zero, so don't
force it to be no less than 1.

View File

@ -694,10 +694,6 @@ ICCCM_GetGeoms(EWin * ewin, Atom atom_change)
ewin->client.base_w = ewin->client.width.min;
ewin->client.base_h = ewin->client.height.min;
}
if (ewin->client.base_w < 1)
ewin->client.base_w = 1;
if (ewin->client.base_h < 1)
ewin->client.base_h = 1;
if (ewin->client.width.min < ewin->client.base_w)
ewin->client.width.min = ewin->client.base_w;
if (ewin->client.height.min < ewin->client.base_h)