diff options
author | Taehyub Kim <taehyub.kim@samsung.com> | 2016-10-25 13:32:50 -0700 |
---|---|---|
committer | Cedric Bail <cedric@osg.samsung.com> | 2016-10-25 14:37:11 -0700 |
commit | ee83f2aa3d6a089487b97c3f9cdad30a0cb5a9d8 (patch) | |
tree | 385b856aada856eaf92b1341b4902e7fbac15c07 /config | |
parent | 4f16e16b9449167416f4108c61552c1e48b6d8ca (diff) |
elementary: colorselector - apply new focus ui for palette and components items
Summary:
colorselector focus ui is not moving for palette and components items.
now it is changed to focus each item of palette and components.
Test Plan:
1. build efl elementary with this patch
2. remove /home/{user}/.elementary
3. launch colorselector with elementary_test -to colorselector
4. move direction key
5. see the new focus ui
Reviewers: jpeg, raster, Hermet, woohyun, bu5hm4n, cedric
Reviewed By: cedric
Differential Revision: https://phab.enlightenment.org/D4288
Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/default/base.src.in | 6 | ||||
-rw-r--r-- | config/mobile/base.src.in | 6 | ||||
-rw-r--r-- | config/standard/base.src.in | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/config/default/base.src.in b/config/default/base.src.in index 9e05df6e19..90188f3827 100644 --- a/config/default/base.src.in +++ b/config/default/base.src.in @@ -803,6 +803,12 @@ group "Elm_Config" struct { value "action" string: "move"; value "params" string: "down"; } + group "Elm_Config_Binding_Key" struct { + value "context" int: 0; + value "key" string: "Return"; + value "action" string: "activate"; + value "params" string: ""; + } } } group "Elm_Config_Bindings_Widget" struct { diff --git a/config/mobile/base.src.in b/config/mobile/base.src.in index 56c4f3fbf3..5619970c93 100644 --- a/config/mobile/base.src.in +++ b/config/mobile/base.src.in @@ -807,6 +807,12 @@ group "Elm_Config" struct { value "action" string: "move"; value "params" string: "down"; } + group "Elm_Config_Binding_Key" struct { + value "context" int: 0; + value "key" string: "Return"; + value "action" string: "activate"; + value "params" string: ""; + } } } group "Elm_Config_Bindings_Widget" struct { diff --git a/config/standard/base.src.in b/config/standard/base.src.in index e628f8274d..849185f6e5 100644 --- a/config/standard/base.src.in +++ b/config/standard/base.src.in @@ -804,6 +804,12 @@ group "Elm_Config" struct { value "action" string: "move"; value "params" string: "down"; } + group "Elm_Config_Binding_Key" struct { + value "context" int: 0; + value "key" string: "Return"; + value "action" string: "activate"; + value "params" string: ""; + } } } group "Elm_Config_Bindings_Widget" struct { |