Add text.ellipsis 45/40345/1
authorShuhrat Dehkanov <sh.dehkanov@samsung.com>
Tue, 2 Jun 2015 14:19:42 +0000 (23:19 +0900)
committerShuhrat Dehkanov <sh.dehkanov@samsung.com>
Tue, 2 Jun 2015 14:19:48 +0000 (23:19 +0900)
This fixes

    edje_cc: Warning. Part 'elm.text' in group
    'elm/progressbar/horizontal/update_progressbar' contains
    description 'default:0' which has text.min: 1 X; but not
    text.ellipsis: -1;
    edje_cc: Warning. This is almost certainly not what you want.

warning.

Change-Id: I328f3dee7a12e67ec01b9b478e5b5e32d16bc8b3

data/widget/progressbar.edc

index 75109b9..35df42c 100644 (file)
@@ -15,7 +15,7 @@
  */
 
 group {
-    name: "elm/progressbar/horizontal/subitembtnprogress";
+       name: "elm/progressbar/horizontal/subitembtnprogress";
        parts {
                part {
                        name: "elm.background.progressbar";
@@ -155,29 +155,29 @@ group {
                                }
                        }
                }
-    }
-    programs {
-       program {
-               name: "focused";
-               signal: SIG_UNCTRL_PB_FOCUSED;
-               source: SRC_PB_PROG;
-               action: STATE_SET "focused" 0.0;
-               target: "background";
-               target: "elm.progress.progressbar";
-       }
-       program {
-               name: "unfocused";
-               signal: SIG_UNCTRL_PB_UNFOCUSED;
-               source: SRC_PB_PROG;
-               action: STATE_SET "default" 0.0;
-               target: "background";
-               target: "elm.progress.progressbar";
-       }
-    }
+       }
+       programs {
+               program {
+                       name: "focused";
+                       signal: SIG_UNCTRL_PB_FOCUSED;
+                       source: SRC_PB_PROG;
+                       action: STATE_SET "focused" 0.0;
+                       target: "background";
+                       target: "elm.progress.progressbar";
+               }
+               program {
+                       name: "unfocused";
+                       signal: SIG_UNCTRL_PB_UNFOCUSED;
+                       source: SRC_PB_PROG;
+                       action: STATE_SET "default" 0.0;
+                       target: "background";
+                       target: "elm.progress.progressbar";
+               }
+       }
 }
 
 group {
-    name: "elm/progressbar/horizontal/update_progressbar";
+       name: "elm/progressbar/horizontal/update_progressbar";
        parts {
                part {
                        name: "elm.background.progressbar";
@@ -347,11 +347,11 @@ group {
                                        font: APP_TEXT_FONT;
                                        size: 18*2;
                                        min: 1 0;
+                                       ellipsis: -1;
                                        text_class: "tizen";
                                }
                                fixed: 1 1;
                        }
                }
-    }
+       }
 }
-