From: Jaehwan Kim Date: Tue, 7 Dec 2010 02:22:26 +0000 (+0900) Subject: [elm_config] add env ELM_THUMBSCROLL_BOUNCE_FRICTION X-Git-Tag: REL_I9200_20110603-1~599^2~10^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=363a475b581ce57c2f5609388008fd64828dea27;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);