From 7a58d15e4132855dd80d3d2aa2e00d298e0f13ed Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sat, 12 Sep 2015 12:45:25 +0900 Subject: [PATCH] elm config - fix labels in config ui for smooth time window --- legacy/elementary/src/bin/config.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/elementary/src/bin/config.c b/legacy/elementary/src/bin/config.c index 37a7e96236..6733be68af 100644 --- a/legacy/elementary/src/bin/config.c +++ b/legacy/elementary/src/bin/config.c @@ -3545,11 +3545,11 @@ _status_config_scrolling(Evas_Object *win, evas_object_smart_callback_add(sl, "delay,changed", smooth_change, NULL); /* Scroll Smooth Time Window */ - LABEL_FRAME_ADD("Scroll Smooth Amount"); + LABEL_FRAME_ADD("Scroll Smooth Time Window"); sl = elm_slider_add(win); - elm_object_tooltip_text_set(sl, "This is the amount smoothing to apply
" - "to thumbscroll to avoid jerky input"); + elm_object_tooltip_text_set(sl, "This is the window of time to look back
" + "into for smoothing of thumbscroll"); evas_object_data_set(win, "scroll_smooth_time_window", sl); evas_object_size_hint_weight_set(sl, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(sl, EVAS_HINT_FILL, 0.5);