summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2020-02-05 12:22:20 -0500
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2020-02-14 09:20:36 +0100
commita59956680d9b71a7ab40efdaa5d5082141c26dba (patch)
tree6d3fc08e5de76a88e2b203f06360b20d699e2c15
parent6a3f10d719a289a293d2ac48d52d4963b56eb2d8 (diff)
downloadefl-a59956680d9b71a7ab40efdaa5d5082141c26dba.tar.gz
elm/config: fix thumbscroll config
this was broken a while ago by failing to correctly update all the configs ref 6409cfa41b19f04ef7b4247d078d626e9ec77a8f Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de> Differential Revision: https://phab.enlightenment.org/D11294
-rw-r--r--data/elementary/config/default/base.src.in2
-rw-r--r--data/elementary/config/mobile/base.src.in5
-rw-r--r--data/elementary/config/standard/base.src.in5
-rw-r--r--src/lib/elementary/elm_config.c7
-rw-r--r--src/lib/elementary/elm_priv.h2
5 files changed, 17 insertions, 4 deletions
diff --git a/data/elementary/config/default/base.src.in b/data/elementary/config/default/base.src.in
index d45a704b5a..9a12e52bcb 100644
--- a/data/elementary/config/default/base.src.in
+++ b/data/elementary/config/default/base.src.in
@@ -1,5 +1,5 @@
group "Elm_Config" struct {
- value "config_version" int: 131095;
+ value "config_version" int: 131096;
value "entry_select_allow" uchar: 1;
value "engine" string: "";
value "vsync" uchar: 0;
diff --git a/data/elementary/config/mobile/base.src.in b/data/elementary/config/mobile/base.src.in
index 0883545e21..5c9ba5a333 100644
--- a/data/elementary/config/mobile/base.src.in
+++ b/data/elementary/config/mobile/base.src.in
@@ -1,5 +1,5 @@
group "Elm_Config" struct {
- value "config_version" int: 131095;
+ value "config_version" int: 131096;
value "entry_select_allow" uchar: 1;
value "engine" string: "";
value "vsync" uchar: 0;
@@ -9,6 +9,9 @@ group "Elm_Config" struct {
value "thumbscroll_momentum_threshold" double: 100.0;
value "thumbscroll_flick_distance_tolerance" int: 3000;
value "thumbscroll_friction" double: 0.95;
+ value "thumbscroll_momentum_distance_max" int: 3000;
+ value "thumbscroll_momentum_friction" double: 0.95;
+
value "thumbscroll_momentum_animation_duration_min_limit" double: 0.3;
value "thumbscroll_momentum_animation_duration_max_limit" double: 1.3;
// will not be used
diff --git a/data/elementary/config/standard/base.src.in b/data/elementary/config/standard/base.src.in
index 391eb5baf3..2e868cd9e1 100644
--- a/data/elementary/config/standard/base.src.in
+++ b/data/elementary/config/standard/base.src.in
@@ -1,5 +1,5 @@
group "Elm_Config" struct {
- value "config_version" int: 131095;
+ value "config_version" int: 131096;
value "entry_select_allow" uchar: 1;
value "engine" string: "";
value "vsync" uchar: 0;
@@ -9,6 +9,9 @@ group "Elm_Config" struct {
value "thumbscroll_momentum_threshold" double: 100.0;
value "thumbscroll_flick_distance_tolerance" int: 1000;
value "thumbscroll_friction" double: 1.0;
+ value "thumbscroll_momentum_distance_max" int: 3000;
+ value "thumbscroll_momentum_friction" double: 0.95;
+
value "thumbscroll_momentum_animation_duration_min_limit" double: 0.3;
value "thumbscroll_momentum_animation_duration_max_limit" double: 1.3;
// will not be used
diff --git a/src/lib/elementary/elm_config.c b/src/lib/elementary/elm_config.c
index ae047cfb0d..9903538253 100644
--- a/src/lib/elementary/elm_config.c
+++ b/src/lib/elementary/elm_config.c
@@ -2481,6 +2481,13 @@ _config_update(void)
_config_free(tcfg);
tcfg = _config_system_load();
IFCFGEND
+
+ IFCFG(0x0018)
+ if (!_elm_config->priv.thumbscroll_momentum_distance_max)
+ COPYVAL(thumbscroll_momentum_distance_max);
+ if (!_elm_config->priv.thumbscroll_momentum_friction)
+ COPYVAL(thumbscroll_momentum_friction);
+ IFCFGEND
/**
* Fix user config for current ELM_CONFIG_EPOCH here.
**/
diff --git a/src/lib/elementary/elm_priv.h b/src/lib/elementary/elm_priv.h
index 89878716f3..90b90fc40d 100644
--- a/src/lib/elementary/elm_priv.h
+++ b/src/lib/elementary/elm_priv.h
@@ -271,7 +271,7 @@ struct _Efl_Ui_Theme_Data
* the users config doesn't need to be wiped - simply new values need
* to be put in
*/
-# define ELM_CONFIG_FILE_GENERATION 0x0017
+# define ELM_CONFIG_FILE_GENERATION 0x0018
# define ELM_CONFIG_VERSION_EPOCH_OFFSET 16
# define ELM_CONFIG_VERSION ((ELM_CONFIG_EPOCH << ELM_CONFIG_VERSION_EPOCH_OFFSET) | \
ELM_CONFIG_FILE_GENERATION)