diff options
author | Woochan Lee <wc0917.lee@samsung.com> | 2016-11-28 10:58:57 -0800 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2016-11-28 11:35:27 -0800 |
commit | 6c04755a922d396356a561b85e010105e6ff61ae (patch) | |
tree | 2d681d32c258d671485a99cd069c442bc555b9e4 /config/standard | |
parent | 05246782dc9c94eeb24bb29e1489ced512259cca (diff) |
elm/calendar: apply focus UI feature.
Summary:
elm_calendar is not subject to current automated focus policies due to internal implementation issues.
(Each date in the calendar is an edje part. )
For the above reasons, I have implemented the focus policy support manually.
Test Plan: elementary_test - calendar sample.
Reviewers: bu5hm4n, woohyun
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4421
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Diffstat (limited to 'config/standard')
-rw-r--r-- | config/standard/base.src.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/config/standard/base.src.in b/config/standard/base.src.in index d5cd732f3f..678e274515 100644 --- a/config/standard/base.src.in +++ b/config/standard/base.src.in | |||
@@ -728,6 +728,24 @@ group "Elm_Config" struct { | |||
728 | value "action" string: "move"; | 728 | value "action" string: "move"; |
729 | value "params" string: "down"; | 729 | value "params" string: "down"; |
730 | } | 730 | } |
731 | group "Elm_Config_Binding_Key" struct { | ||
732 | value "context" int: 0; | ||
733 | value "key" string: "Return"; | ||
734 | value "action" string: "activate"; | ||
735 | value "params" string: ""; | ||
736 | } | ||
737 | group "Elm_Config_Binding_Key" struct { | ||
738 | value "context" int: 0; | ||
739 | value "key" string: "KP_Enter"; | ||
740 | value "action" string: "activate"; | ||
741 | value "params" string: ""; | ||
742 | } | ||
743 | group "Elm_Config_Binding_Key" struct { | ||
744 | value "context" int: 0; | ||
745 | value "key" string: "space"; | ||
746 | value "action" string: "activate"; | ||
747 | value "params" string: ""; | ||
748 | } | ||
731 | } | 749 | } |
732 | } | 750 | } |
733 | group "Elm_Config_Bindings_Widget" struct { | 751 | group "Elm_Config_Bindings_Widget" struct { |