From: raster Date: Fri, 10 Jun 2011 08:05:39 +0000 (+0000) Subject: make sure defaults all match with code built in, and profiles etc. X-Git-Tag: REL_F_I9500_20120323_1~17^2~2588 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8699ca1b9c04214e53ffd7b1e17c4cea525dbfd8;p=framework%2Fuifw%2Felementary.git make sure defaults all match with code built in, and profiles etc. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@60182 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/config/illume/base.src b/config/illume/base.src index 5945aa7..c715675 100644 --- a/config/illume/base.src +++ b/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/config/standard/base.src b/config/standard/base.src index b9aa1e4..b2284c3 100644 --- a/config/standard/base.src +++ b/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/src/lib/elm_config.c b/src/lib/elm_config.c index 2838b90..a142ac4 100644 --- a/src/lib/elm_config.c +++ b/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;