rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=c56fe328c3ee2139e712328bf07d9c9cf2ab96bf
commit c56fe328c3ee2139e712328bf07d9c9cf2ab96bf Author: Mykyta Biliavskyi <[email protected]> Date: Mon Jul 25 13:38:52 2016 +0300 Tizen theme: add focus support for combobox default style. --- data/themes/tizen/widgets/combobox.edc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/data/themes/tizen/widgets/combobox.edc b/data/themes/tizen/widgets/combobox.edc index e0e2bc8..9c17d38 100644 --- a/data/themes/tizen/widgets/combobox.edc +++ b/data/themes/tizen/widgets/combobox.edc @@ -153,6 +153,22 @@ group { name: "elm/button/base/combobox_vertical/default"; target: "border"; target: "bg"; } + program { name: "unfocus"; + source: "elm"; + signal: "elm,action,unfocus"; + filter: "dummy" "default"; + action: STATE_SET "default" 0.0; + target: "border"; + target: "bg"; + } + program { name: "focus"; + source: "elm"; + signal: "elm,action,focus"; + filter: "dummy" "default"; + action: STATE_SET "focus" 0.0; + target: "border"; + target: "bg"; + } program { name: "expanded"; source: "elm"; signal: "expanded"; --
