From fd484e011c47d611bee8effc8491df3ece42a927 Mon Sep 17 00:00:00 2001 From: Shuhrat Dehkanov Date: Tue, 2 Jun 2015 23:19:42 +0900 Subject: [PATCH] Add text.ellipsis 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 | 46 ++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/data/widget/progressbar.edc b/data/widget/progressbar.edc index 75109b9..35df42c 100644 --- a/data/widget/progressbar.edc +++ b/data/widget/progressbar.edc @@ -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; } } - } + } } - -- 2.7.4