summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJaehwan Kim <jae.hwan.kim@samsung.com>2013-03-07 18:13:15 +0900
committerJaehwan Kim <jae.hwan.kim@samsung.com>2013-03-07 18:13:15 +0900
commit9ee7004b86b4f07b747735205791bab772661d76 (patch)
tree4f44139e0fad5b6f4e7e7ae2df849c36e3426241 /config
parent36324d08174bf8905db16315b0f7ee8332746104 (diff)
downloadelementary-9ee7004b86b4f07b747735205791bab772661d76.tar.gz
Add the config ELM_THUMBSCROLL_HOLD_THRESHOLD.
This is the number of pixels the range which can be scrolled, while the scroller is holed. In case of mobile, this config is useful since the out of scroller area is too small.
Diffstat (limited to 'config')
-rw-r--r--config/default/base.src1
-rw-r--r--config/mobile/base.src1
-rw-r--r--config/standard/base.src1
3 files changed, 3 insertions, 0 deletions
diff --git a/config/default/base.src b/config/default/base.src
index 61591e449..c928779c6 100644
--- a/config/default/base.src
+++ b/config/default/base.src
@@ -4,6 +4,7 @@ group "Elm_Config" struct {
value "vsync" uchar: 0;
value "thumbscroll_enable" uchar: 1;
value "thumbscroll_threshold" int: 24;
+ value "thumbscroll_hold_threshold" int: 24;
value "thumbscroll_momentum_threshold" double: 100.0;
value "thumbscroll_friction" double: 1.0;
value "thumbscroll_bounce_friction" double: 0.5;
diff --git a/config/mobile/base.src b/config/mobile/base.src
index d112cf7dc..604154e62 100644
--- a/config/mobile/base.src
+++ b/config/mobile/base.src
@@ -4,6 +4,7 @@ group "Elm_Config" struct {
value "vsync" uchar: 0;
value "thumbscroll_enable" uchar: 1;
value "thumbscroll_threshold" int: 24;
+ value "thumbscroll_hold_threshold" int: 100;
value "thumbscroll_momentum_threshold" double: 100.0;
value "thumbscroll_friction" double: 1.0;
value "thumbscroll_bounce_friction" double: 0.5;
diff --git a/config/standard/base.src b/config/standard/base.src
index e1aa88cec..4870f3907 100644
--- a/config/standard/base.src
+++ b/config/standard/base.src
@@ -4,6 +4,7 @@ group "Elm_Config" struct {
value "vsync" uchar: 0;
value "thumbscroll_enable" uchar: 0;
value "thumbscroll_threshold" int: 4;
+ value "thumbscroll_hold_threshold" int: 4;
value "thumbscroll_momentum_threshold" double: 100.0;
value "thumbscroll_friction" double: 1.0;
value "thumbscroll_bounce_friction" double: 0.5;