block border comp geometry updates when pixmap has not been fetched

This commit is contained in:
Mike Blumenkrantz 2013-06-24 09:35:34 +01:00
parent 06e4663e7c
commit 26f61cb50a
1 changed files with 4 additions and 1 deletions

View File

@ -484,7 +484,10 @@ _e_comp_win_geometry_update(E_Comp_Win *cw)
return;
}
if (cw->bd)
x = cw->bd->x, y = cw->bd->y;
{
if (!cw->pixmap) return;
x = cw->bd->x, y = cw->bd->y;
}
else if (cw->visible)
x = cw->x, y = cw->y;
else