diff options
author | Jaeun Choi <jaeun12.choi@samsung.com> | 2014-04-15 13:58:01 +0900 |
---|---|---|
committer | ChunEon Park <hermet@hermet.pe.kr> | 2014-04-15 13:58:01 +0900 |
commit | 820f3dc907250c0c08ed8431b50567e58d6dab5c (patch) | |
tree | a994f700a5145029264e04c2878eeac788e279fe /config/mobile | |
parent | 18e9be3cb1e05f2c61488ddbebfd9687110a77bf (diff) | |
download | elementary-820f3dc907250c0c08ed8431b50567e58d6dab5c.tar.gz |
fileselector: apply key binding
Summary: This patch applies key binding to elm_fileselector.
Test Plan: elementary_test > fileselector > check key events
Reviewers: Hermet, raster
Differential Revision: https://phab.enlightenment.org/D728
Diffstat (limited to 'config/mobile')
-rw-r--r-- | config/mobile/base.src | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/config/mobile/base.src b/config/mobile/base.src index 6efe5848d..5e6d1b8e4 100644 --- a/config/mobile/base.src +++ b/config/mobile/base.src @@ -253,6 +253,29 @@ group "Elm_Config" struct { } group "bindings" list { group "Elm_Config_Bindings_Widget" struct { + value "name" string: "Elc_Fileselector"; + group "key_bindings" list { + group "Elm_Config_Binding_Key" struct { + value "context" int: 0; + value "key" string: "Return"; + value "action" string: "select"; + value "params" string: ""; + } + group "Elm_Config_Binding_Key" struct { + value "context" int: 0; + value "key" string: "KP_Enter"; + value "action" string: "select"; + value "params" string: ""; + } + group "Elm_Config_Binding_Key" struct { + value "context" int: 0; + value "key" string: "Escape"; + value "action" string: "escape"; + value "params" string: ""; + } + } + } + group "Elm_Config_Bindings_Widget" struct { value "name" string: "Elm_Button"; group "key_bindings" list { group "Elm_Config_Binding_Key" struct { |