forked from e16/e16
1
0
Fork 0

Quick fix for now.

SVN revision: 14965
This commit is contained in:
Kim Woelders 2005-05-26 22:38:28 +00:00
parent 8c3e23fc3b
commit 39a7a88b22
2 changed files with 3 additions and 1 deletions

View File

@ -502,6 +502,8 @@ IconboxEwinMoveResize(EWin * ewin, int resize __UNUSED__)
if (!resize && !ib->do_update && !TransparencyEnabled())
return;
if (ib->w <= 0 || ib->h <= 0)
return;
IconboxDraw(ib);
ib->do_update = 0;

View File

@ -499,7 +499,7 @@ PagerEwinMoveResize(EWin * ewin, int resize __UNUSED__)
w = ewin->client.w;
h = ewin->client.h;
if ((w == p->w) && (h == p->h))
if ((w == p->w && h == p->h) || w <= 1 || h <= 1)
return;
GetAreaSize(&ax, &ay);