From 178e04345140b2b3f30829584a0b07dcb8096c0d Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Sat, 17 Dec 2005 22:57:15 +0000 Subject: [PATCH] Fix Autosize Bug When Ibox is at top or bottom of screen SVN revision: 19097 --- src/modules/ibox/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ibox/e_mod_main.c b/src/modules/ibox/e_mod_main.c index 26a340b4f..8849fffed 100644 --- a/src/modules/ibox/e_mod_main.c +++ b/src/modules/ibox/e_mod_main.c @@ -660,7 +660,7 @@ _ibox_box_frame_resize(IBox_Box *ibb) (e_gadman_client_edge_get(ibb->gmc) == E_GADMAN_EDGE_BOTTOM)) { /* w is the width of the box */ - e_gadman_client_resize(ibb->gmc, bw, bh); //ibb->w + e_gadman_client_resize(ibb->gmc, ibb->w, bh); } } }