When showing borders that were hidden, signal a layout update for that border.

SVN revision: 46295
This commit is contained in:
Christopher Michael 2010-02-19 03:53:43 +00:00
parent cdf7c14d90
commit cfd9ea4e21
1 changed files with 8 additions and 2 deletions

View File

@ -202,14 +202,20 @@ _policy_border_show_below(E_Border *bd)
if ((bd->fullscreen) || (bd->need_fullscreen))
{
if (!b->visible) e_border_show(b);
if (!b->visible)
e_border_show(b);
b->changes.visible = 1;
b->changed = 1;
}
else
{
/* need to check x/y position */
if ((b->x == bd->x) && (b->y == bd->y))
{
if (!b->visible) e_border_show(b);
if (!b->visible)
e_border_show(b);
b->changes.visible = 1;
b->changed = 1;
}
}
}