From 0942505cff2f10ab5014724603d2d9b602b1af7f Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 23 Dec 2009 20:04:44 +0000 Subject: [PATCH] Resize the quickpanel borders during layout. SVN revision: 44698 --- src/modules/illume2/e_mod_layout_illume.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/modules/illume2/e_mod_layout_illume.c b/src/modules/illume2/e_mod_layout_illume.c index 77638a204..a0010baa1 100644 --- a/src/modules/illume2/e_mod_layout_illume.c +++ b/src/modules/illume2/e_mod_layout_illume.c @@ -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 {