raster pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=504706d45ac2858be91721bd398d0c36a9bffd2d

commit 504706d45ac2858be91721bd398d0c36a9bffd2d
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Mon Jul 25 22:21:47 2016 +0900

    e ibar - fix devilhorns fix to use the right widght and hight for separator
---
 src/modules/ibar/e_mod_main.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c
index 4ba77b0..e5b5ba9 100644
--- a/src/modules/ibar/e_mod_main.c
+++ b/src/modules/ibar/e_mod_main.c
@@ -653,12 +653,10 @@ _ibar_resize_handle(IBar *b)
      }
    if (b->o_sep)
      {
-        if (_is_vertical(b->inst))
-          h = 16 * e_scale;
-        else
-          w = 16 * e_scale;
+        if (_is_vertical(b->inst)) hh = 16 * e_scale;
+        else ww = 16 * e_scale;
         evas_object_size_hint_min_set(b->o_sep, 8, 8);
-        evas_object_size_hint_max_set(b->o_sep, w, h);
+        evas_object_size_hint_max_set(b->o_sep, ww, wh);
      }
    elm_box_recalculate(b->o_box);
    elm_box_recalculate(b->o_outerbox);

-- 


Reply via email to