Home
last modified time | relevance | path

Searched refs:last_press_point (Results 1 – 2 of 2) sorted by relevance

/lvgl-2.7.6/src/lv_widgets/
Dlv_cpicker.h56 lv_point_t last_press_point; member
Dlv_cpicker.c770 lv_indev_get_point(lv_indev_get_act(), &ext->last_press_point); in lv_cpicker_signal()
788 if((LV_MATH_ABS(p.x - ext->last_press_point.x) > indev->driver.drag_limit / 2) || in lv_cpicker_signal()
789 (LV_MATH_ABS(p.y - ext->last_press_point.y) > indev->driver.drag_limit / 2)) { in lv_cpicker_signal()
791 ext->last_press_point.x = p.x; in lv_cpicker_signal()
792 ext->last_press_point.y = p.y; in lv_cpicker_signal()