Subject: [E-devel] [Patch] Small patch for elm_slider (scrolling pop +
push)
I made small patch for elm_slider.
I think scrolling should be freezed (not held) when dragging is
started.
This is because scrolling can go on with elm_widget_scroll_hold_push.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@57959
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
evas_object_smart_callback_call(data, SIG_DRAG_START, NULL);
_units_set(data);
_indicator_set(data);
- elm_widget_scroll_hold_push(data);
+ elm_widget_scroll_freeze_push(data);
}
static void
evas_object_smart_callback_call(data, SIG_DRAG_STOP, NULL);
_units_set(data);
_indicator_set(data);
- elm_widget_scroll_hold_pop(data);
+ elm_widget_scroll_freeze_pop(data);
}
static void