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:23:14 -07:00
parent 2d4c709a88
commit 9e3d8c9090

View File

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