From d13bbc2064c98961fb8d32a6bebd2a8a489d8791 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Fri, 10 Jun 2011 08:05:39 +0000 Subject: [PATCH] make sure defaults all match with code built in, and profiles etc. SVN revision: 60182 --- legacy/elementary/config/illume/base.src | 2 +- legacy/elementary/config/standard/base.src | 2 +- legacy/elementary/src/lib/elm_config.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/legacy/elementary/config/illume/base.src b/legacy/elementary/config/illume/base.src index 5945aa7b1b..c715675553 100644 --- a/legacy/elementary/config/illume/base.src +++ b/legacy/elementary/config/illume/base.src @@ -15,7 +15,7 @@ group "Elm_Config" struct { value "scroll_smooth_amount" double: 1.0; value "scroll_smooth_history_weight" double: 0.3; value "scroll_smooth_future_time" double: 0.0; - value "scroll_smooth_time_window" double: 0.15; + value "scroll_smooth_time_window" double: 0.2; value "scale" double: 1.0; value "bgpixmap" int: 0; value "compositing" int: 1; diff --git a/legacy/elementary/config/standard/base.src b/legacy/elementary/config/standard/base.src index b9aa1e420d..b2284c3d99 100644 --- a/legacy/elementary/config/standard/base.src +++ b/legacy/elementary/config/standard/base.src @@ -15,7 +15,7 @@ group "Elm_Config" struct { value "scroll_smooth_amount" double: 0.0; value "scroll_smooth_history_weight" double: 0.3; value "scroll_smooth_future_time" double: 0.0; - value "scroll_smooth_time_window" double: 0.15; + value "scroll_smooth_time_window" double: 0.2; value "scale" double: 1.0; value "bgpixmap" int: 0; value "compositing" int: 1; diff --git a/legacy/elementary/src/lib/elm_config.c b/legacy/elementary/src/lib/elm_config.c index 2838b90d6c..a142ac4834 100644 --- a/legacy/elementary/src/lib/elm_config.c +++ b/legacy/elementary/src/lib/elm_config.c @@ -1124,8 +1124,8 @@ _config_load(void) _elm_config->thumbscroll_border_friction = 0.5; _elm_config->scroll_smooth_amount = 1.0; _elm_config->scroll_smooth_history_weight = 0.3; - _elm_config->scroll_smooth_future_time = 2.0 / 60.0; - _elm_config->scroll_smooth_time_window = 0.12; + _elm_config->scroll_smooth_future_time = 0.0; + _elm_config->scroll_smooth_time_window = 0.2; _elm_config->scale = 1.0; _elm_config->bgpixmap = 0; _elm_config->compositing = 1;