slider: fix edje warning
authorShuhrat Dehkanov <sh.dehkanov@samsung.com>
Thu, 30 Jun 2016 07:05:28 +0000 (16:05 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Thu, 30 Jun 2016 07:10:10 +0000 (16:10 +0900)
Summary:
ERR<18878>:edje lib/edje/edje_calc.c:2767 _edje_part_recalc_single() file /usr/local/share/elementary/themes/default.edj, group elm/slider/horizontal/default has a non-fixed part 'elm.swallow.icon'. You should add 'fixed: 1 0'. But in order to optimize the edje calc, we add it automatically.
ERR<18878>:edje lib/edje/edje_calc.c:2767 _edje_part_recalc_single() file /usr/local/share/elementary/themes/default.edj, group elm/slider/horizontal/default has a non-fixed part 'elm.swallow.end'. You should add 'fixed: 1 0'. But in order to optimize the edje calc, we add it automatically.

Test Plan: Launch an app with slider, open the slider and observe the console output

Reviewers: cedric, singh.amitesh, jpeg

Subscribers: seoz, minkyu

Differential Revision: https://phab.enlightenment.org/D4117

data/elementary/themes/edc/elm/slider.edc

index 9d83dd5..dfefd8b 100644 (file)
@@ -216,6 +216,7 @@ group { name: "elm/slider/horizontal/default";
       part { name: "elm.swallow.icon"; type: SWALLOW;
          clip_to: "dis_clip";
          description { state: "default" 0.0;
+            fixed: 1 0;
             visible: 0;
             align: 0.0 0.5;
             rel1.offset: 0 2;
@@ -292,6 +293,7 @@ group { name: "elm/slider/horizontal/default";
       part { name: "elm.swallow.end"; type: SWALLOW;
          clip_to: "dis_clip";
          description { state: "default" 0.0;
+            fixed: 1 0;
             visible: 0;
             align: 1.0 0.5;
             rel1.offset: 0 2;