[config] fixed wrong function name for scroller config

Should call elm_config_scroll_thumbscroll_hold_threshold_get but this line calls elm_config_scroll_thumbscroll_threshold_get.
This commit is contained in:
Hosang Kim 2013-07-02 22:50:59 +09:00 committed by Daniel Juyung Seo
parent 651214b722
commit cbc70b32fe
1 changed files with 1 additions and 1 deletions

View File

@ -2859,7 +2859,7 @@ _status_config_scrolling(Evas_Object *win,
elm_slider_unit_format_set(sl, "%1.0f pixels");
elm_slider_indicator_format_set(sl, "%1.0f");
elm_slider_min_max_set(sl, 4.0, 500.0);
elm_slider_value_set(sl, elm_config_scroll_thumbscroll_threshold_get());
elm_slider_value_set(sl, elm_config_scroll_thumbscroll_hold_threshold_get());
elm_box_pack_end(bx, sl);
evas_object_show(sl);