Resize the quickpanel borders during layout.

SVN revision: 44698
This commit is contained in:
Christopher Michael 2009-12-23 20:04:44 +00:00
parent 5906ab2010
commit 0942505cff
1 changed files with 4 additions and 1 deletions

View File

@ -340,8 +340,11 @@ _zone_layout(E_Zone *z)
printf("Found Quickpanel Window: %s\n", bd->client.icccm.class);
e_mod_border_min_get(bd, &mw, &mh);
if (bd->layer != IL_QUICK_PANEL_LAYER)
if ((bd->w != bd->zone->w) || (bd->h != mh))
e_border_resize(bd, bd->zone->w, mh);
if (bd->layer != IL_QUICK_PANEL_LAYER)
e_border_layer_set(bd, IL_QUICK_PANEL_LAYER);
// e_border_lower(bd);
}
else
{