diff options
author | Taehyub Kim <taehyub.kim@samsung.com> | 2016-05-18 21:55:35 +0900 |
---|---|---|
committer | Hermet Park <hermet@hermet.pe.kr> | 2016-05-18 22:15:08 +0900 |
commit | 55a6bd7fbb8765aff0c0ce0053de903e4d31baea (patch) | |
tree | 809c8ea66981011025a080079f7845e566a44b09 /config/default | |
parent | 96624b9725bdecbdc5d741bff320395469fdf675 (diff) |
elc_popup: add escape key binding
Summary:
There are no methods to close the popup with key down.
So I added the escape key binding to close the popup with escape key.
Test Plan:
1. patch this code
2. delete /home/{user}/.elementary to refresh the config value
3. launch elementary_test -to "popup"
4. click one example of the list and press escape key
5. see closing the popup
Reviewers: cedric, raster, jpeg, Jaehyun_Cho, Hermet
Reviewed By: Hermet
Differential Revision: https://phab.enlightenment.org/D3876
Conflicts:
src/lib/elementary/elm_priv.h
Diffstat (limited to 'config/default')
-rw-r--r-- | config/default/base.src.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/config/default/base.src.in b/config/default/base.src.in index bd2ec066c6..eed391ca41 100644 --- a/config/default/base.src.in +++ b/config/default/base.src.in @@ -1,5 +1,5 @@ group "Elm_Config" struct { - value "config_version" int: 131079; + value "config_version" int: 131083; value "engine" string: ""; value "vsync" uchar: 0; value "thumbscroll_enable" uchar: 1; @@ -597,6 +597,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: "Escape"; + value "action" string: "esc"; + value "params" string: ""; + } } } group "Elm_Config_Bindings_Widget" struct { |