make it 64 adjust (fudge factor really)

SVN revision: 26450
This commit is contained in:
Carsten Haitzler 2006-10-09 15:18:53 +00:00
parent e372d9f636
commit 5c6cade06d
1 changed files with 4 additions and 4 deletions

View File

@ -5338,13 +5338,13 @@ _e_border_eval(E_Border *bd)
{
if (bd->zone->w != rem->prop.res_x)
{
if (bd->client.w > (bd->zone->w - 32))
bd->client.w = bd->zone->w - 32;
if (bd->client.w > (bd->zone->w - 64))
bd->client.w = bd->zone->w - 64;
}
if (bd->zone->h != rem->prop.res_y)
{
if (bd->client.h > (bd->zone->h - 32))
bd->client.h = bd->zone->h - 32;
if (bd->client.h > (bd->zone->h - 64))
bd->client.h = bd->zone->h - 64;
}
if (bd->client.icccm.min_w > bd->client.w)
bd->client.w = bd->client.icccm.min_w;