diff --git a/legacy/elementary/ChangeLog b/legacy/elementary/ChangeLog index b4d90c5047..50c7dc625c 100644 --- a/legacy/elementary/ChangeLog +++ b/legacy/elementary/ChangeLog @@ -303,3 +303,7 @@ * Use this new API to replace a non backend safe call in the copy and paste code +2012-07-12 Tae-Hwan Kim (Bluezery) + + * Fix that vertical bounce enable value can be get from elm_config + when the genlist is added. diff --git a/legacy/elementary/src/lib/elm_genlist.c b/legacy/elementary/src/lib/elm_genlist.c index c152e212fc..974c95e208 100644 --- a/legacy/elementary/src/lib/elm_genlist.c +++ b/legacy/elementary/src/lib/elm_genlist.c @@ -3606,6 +3606,7 @@ elm_genlist_add(Evas_Object *parent) elm_smart_scroller_bounce_allow_set(wd->scr, EINA_FALSE, _elm_config->thumbscroll_bounce_enable); elm_widget_resize_object_set(obj, wd->scr); + wd->v_bounce = _elm_config->thumbscroll_bounce_enable; evas_object_smart_callback_add(wd->scr, "animate,start", _scr_anim_start, obj); evas_object_smart_callback_add(wd->scr, "animate,stop", _scr_anim_stop, obj);