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
This commit is contained in:
YeongJong Lee 2018-04-18 15:34:35 +09:00 committed by Jaehyun Cho
parent 73beab6a08
commit 2c8c7807f1
4 changed files with 7 additions and 7 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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)