Home
last modified time | relevance | path

Searched refs:LV_SCROLL_SNAP_NONE (Results 1 – 4 of 4) sorted by relevance

/lvgl-3.7.0/src/core/
Dlv_indev_scroll.c129 if(align_y == LV_SCROLL_SNAP_NONE) { in _lv_indev_scroll_throw_handler()
153 if(align_x == LV_SCROLL_SNAP_NONE) { in _lv_indev_scroll_throw_handler()
179 if(align_y == LV_SCROLL_SNAP_NONE) { in _lv_indev_scroll_throw_handler()
193 if(align_x == LV_SCROLL_SNAP_NONE) { in _lv_indev_scroll_throw_handler()
455 if(align == LV_SCROLL_SNAP_NONE) return 0; in find_snap_point_x()
510 if(align == LV_SCROLL_SNAP_NONE) return 0; in find_snap_point_y()
659 if(snap != LV_SCROLL_SNAP_NONE && act_obj_point > snap_point) return diff; in elastic_diff()
667 if(snap != LV_SCROLL_SNAP_NONE && act_obj_point < snap_point) return diff; in elastic_diff()
Dlv_obj_scroll.h42 LV_SCROLL_SNAP_NONE, /**< Do not align, leave where it is*/ enumerator
Dlv_obj_scroll.c107 else return LV_SCROLL_SNAP_NONE; in lv_obj_get_scroll_snap_x()
113 else return LV_SCROLL_SNAP_NONE; in lv_obj_get_scroll_snap_y()
635 if(lv_obj_get_scroll_snap_y(obj) == LV_SCROLL_SNAP_NONE) { in lv_obj_readjust_scroll()
644 if(lv_obj_get_scroll_snap_x(obj) == LV_SCROLL_SNAP_NONE) { in lv_obj_readjust_scroll()
696 if(snap_y != LV_SCROLL_SNAP_NONE) area_tmp = &child->coords; in scroll_area_into_view()
739 if(snap_x != LV_SCROLL_SNAP_NONE) area_tmp = &child->coords; in scroll_area_into_view()
/lvgl-3.7.0/docs/overview/
Dscroll.md108 - `LV_SCROLL_SNAP_NONE` Snapping is disabled. (default)
123 …ng the children snappable and setting a scroll snap alignment different from `LV_SCROLL_SNAP_NONE`.