From: Jaehwan Kim Date: Mon, 6 Dec 2010 11:39:56 +0000 (+0900) Subject: [elm_config] add env ELM_THUMBSCROLL_BOUNCE_FRICTION X-Git-Tag: REL_I9200_20110603-1~600 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ab510b62e9deb557634f7ca85d422527723abb68;p=framework%2Fuifw%2Felementary.git [elm_config] add env ELM_THUMBSCROLL_BOUNCE_FRICTION --- diff --git a/src/lib/elm_config.c b/src/lib/elm_config.c index e53f360..e8c66af 100755 --- a/src/lib/elm_config.c +++ b/src/lib/elm_config.c @@ -591,6 +591,8 @@ _env_get(void) if (s) _elm_config->bring_in_scroll_friction = atof(s); s = getenv("ELM_ZOOM_FRICTION"); if (s) _elm_config->zoom_friction = atof(s); + s = getenv("ELM_THUMBSCROLL_BOUNCE_FRICTION"); + if (s) _elm_config->thumbscroll_bounce_friction = atof(s); s = getenv("ELM_THEME"); if (s) eina_stringshare_replace(&_elm_config->theme, s);