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

fix(obj) detecting which indev sent LV_EVENT_FOCUS

fixes #2359
This commit is contained in:
Gabor Kiss-Vamosi 2021-07-08 17:03:14 +02:00
parent 2a6bfe8cf9
commit f03d4b8cb9

View File

@ -705,7 +705,7 @@ static void lv_obj_event(const lv_obj_class_t * class_p, lv_event_t * e)
editing = lv_group_get_editing(lv_obj_get_group(obj));
lv_state_t state = LV_STATE_FOCUSED;
lv_indev_t * indev = lv_indev_get_act();
lv_indev_t * indev = lv_event_get_indev(e);
lv_indev_type_t indev_type = lv_indev_get_type(indev);
if(indev_type == LV_INDEV_TYPE_KEYPAD || indev_type == LV_INDEV_TYPE_ENCODER) state |= LV_STATE_FOCUS_KEY;
if(editing) {