[config] fixed wrong function name for scroller config
authorHosang Kim <hosang12.kim@samsung.com>
Tue, 2 Jul 2013 13:50:59 +0000 (22:50 +0900)
committerDaniel Juyung Seo <seojuyung2@gmail.com>
Tue, 2 Jul 2013 13:51:01 +0000 (22:51 +0900)
Should call elm_config_scroll_thumbscroll_hold_threshold_get but this line calls elm_config_scroll_thumbscroll_threshold_get.

src/bin/config.c

index d09d210..6c3520f 100644 (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);