From 399a4c49042c5db63e19a92ab254f44f2f00df64 Mon Sep 17 00:00:00 2001 From: YeongJong Lee Date: Wed, 18 Apr 2018 15:34:35 +0900 Subject: [PATCH] config: fix Efl.Ui.Slider key binding Summary: this fixes T6796 Test Plan: elemetary_test -to slider Reviewers: woohyun, Hermet, Jaehyun_Cho Reviewed By: Jaehyun_Cho Subscribers: cedric Maniphest Tasks: T6796 Differential Revision: https://phab.enlightenment.org/D5962 --- config/default/base.src.in | 4 ++-- config/mobile/base.src.in | 4 ++-- config/standard/base.src.in | 4 ++-- src/lib/elementary/elm_priv.h | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/config/default/base.src.in b/config/default/base.src.in index 8873bf7..9c8f42c 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: 131087; + value "config_version" int: 131088; value "entry_select_allow" uchar: 1; value "engine" string: ""; value "vsync" uchar: 0; @@ -2276,7 +2276,7 @@ group "Elm_Config" struct { } } group "Elm_Config_Bindings_Widget" struct { - value "name" string: "Elm_Slider"; + value "name" string: "Efl.Ui.Slider"; group "key_bindings" list { group "Elm_Config_Binding_Key" struct { value "context" int: 0; diff --git a/config/mobile/base.src.in b/config/mobile/base.src.in index 0fdb4f4..c09b2b2 100644 --- a/config/mobile/base.src.in +++ b/config/mobile/base.src.in @@ -1,5 +1,5 @@ group "Elm_Config" struct { - value "config_version" int: 131087; + value "config_version" int: 131088; value "entry_select_allow" uchar: 1; value "engine" string: ""; value "vsync" uchar: 0; @@ -2280,7 +2280,7 @@ group "Elm_Config" struct { } } group "Elm_Config_Bindings_Widget" struct { - value "name" string: "Elm_Slider"; + value "name" string: "Efl.Ui.Slider"; group "key_bindings" list { group "Elm_Config_Binding_Key" struct { value "context" int: 0; diff --git a/config/standard/base.src.in b/config/standard/base.src.in index 1355b38..dfcdb89 100644 --- a/config/standard/base.src.in +++ b/config/standard/base.src.in @@ -1,5 +1,5 @@ group "Elm_Config" struct { - value "config_version" int: 131087; + value "config_version" int: 131088; value "entry_select_allow" uchar: 1; value "engine" string: ""; value "vsync" uchar: 0; @@ -2277,7 +2277,7 @@ group "Elm_Config" struct { } } group "Elm_Config_Bindings_Widget" struct { - value "name" string: "Elm_Slider"; + value "name" string: "Efl.Ui.Slider"; group "key_bindings" list { group "Elm_Config_Binding_Key" struct { value "context" int: 0; diff --git a/src/lib/elementary/elm_priv.h b/src/lib/elementary/elm_priv.h index a4d1d79..3cabaf8 100644 --- a/src/lib/elementary/elm_priv.h +++ b/src/lib/elementary/elm_priv.h @@ -157,7 +157,7 @@ struct _Elm_Theme * the users config doesn't need to be wiped - simply new values need * to be put in */ -# define ELM_CONFIG_FILE_GENERATION 0x000f +# define ELM_CONFIG_FILE_GENERATION 0x0010 # define ELM_CONFIG_VERSION_EPOCH_OFFSET 16 # define ELM_CONFIG_VERSION ((ELM_CONFIG_EPOCH << ELM_CONFIG_VERSION_EPOCH_OFFSET) | \ ELM_CONFIG_FILE_GENERATION) -- 2.7.4