From: Myungjae Lee Date: Fri, 24 Jun 2011 02:53:01 +0000 (+0900) Subject: [entry] fixed selection block handler show/hide bug X-Git-Tag: submit/2.0alpha-wayland/20121130.000903~719 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=df55a8179b20f7dda4fde8a8ee29a45870c98b65;p=profile%2Fivi%2Fefl-theme-tizen.git [entry] fixed selection block handler show/hide bug --- diff --git a/themes/groups/entry.edc b/themes/groups/entry.edc index 36992cc..f6e3cd8 100644 --- a/themes/groups/entry.edc +++ b/themes/groups/entry.edc @@ -1493,12 +1493,16 @@ group { name: "elm/entry/custom-password/popup"; scale: 1; mouse_events: 1; description { state: "default" 0.0; - visible: 1; + visible: 0; fixed: 1 1; align: 0.5 0.25; min: 50 80; color: 0 0 0 0; } + description { state: "show" 0.0; + inherit: "default" 0.0; + visible: 1; + } } part { name: "handle"; mouse_events: 1; @@ -1535,12 +1539,14 @@ group { name: "elm/entry/custom-password/popup"; source: "elm"; action: STATE_SET "show" 0.0; target: "handle"; + target: "bg"; } program { name: "unfocused"; signal: "elm,action,unfocus"; source: "elm"; action: STATE_SET "default" 0.0; target: "handle"; + target: "bg"; } } } @@ -1556,12 +1562,16 @@ group { name: "elm/entry/custom-password/popup"; scale: 1; mouse_events: 1; description { state: "default" 0.0; - visible: 1; + visible: 0; fixed: 1 1; align: 0.5 0.75; min: 50 80; color: 0 0 0 0; } + description { state: "show" 0.0; + inherit: "default" 0.0; + visible: 1; + } } part { name: "handle"; mouse_events: 1; @@ -1598,12 +1608,14 @@ group { name: "elm/entry/custom-password/popup"; source: "elm"; action: STATE_SET "show" 0.0; target: "handle"; + target: "bg"; } program { name: "unfocused"; signal: "elm,action,unfocus"; source: "elm"; action: STATE_SET "default" 0.0; target: "handle"; + target: "bg"; } } } diff --git a/themes/groups/multibuttonentry.edc b/themes/groups/multibuttonentry.edc old mode 100755 new mode 100644