From b1f608c5e607c2101862eb4a63d53bef9cc58761 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 25 Jul 2016 09:05:40 -0400 Subject: [PATCH] use proper variables to set size_hint_max on ibar Signed-off-by: Chris Michael --- src/modules/ibar/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c index d14e7bf3f..4ba77b08f 100644 --- a/src/modules/ibar/e_mod_main.c +++ b/src/modules/ibar/e_mod_main.c @@ -658,7 +658,7 @@ _ibar_resize_handle(IBar *b) else w = 16 * e_scale; evas_object_size_hint_min_set(b->o_sep, 8, 8); - evas_object_size_hint_max_set(b->o_sep, ww, hh); + evas_object_size_hint_max_set(b->o_sep, w, h); } elm_box_recalculate(b->o_box); elm_box_recalculate(b->o_outerbox);