1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-21 06:53:01 +08:00

Remove undeclared

This commit is contained in:
Adam Martini 2020-06-25 21:27:18 -07:00
parent 70a2287568
commit a73b316681

View File

@ -403,10 +403,7 @@ static lv_res_t lv_rotary_signal(lv_obj_t * rotary, lv_signal_t sign, void * par
if(sign == LV_SIGNAL_PRESSED) {
lv_indev_get_point(param, &p);
lv_indev_get_point(lv_indev_get_act(), &ext->last_press_point);
res = double_click_reset(rotary);
if(res != LV_RES_OK) return res;
ext->dragging = true;
}
else if(sign == LV_SIGNAL_PRESSING) {