add LV_NO_ANIM and LV_NO_SHADOW

This commit is contained in:
Gabor Kiss-Vamosi
2017-11-27 17:48:54 +01:00
parent 0a3ff11223
commit 83b01aa627
19 changed files with 144 additions and 22 deletions

View File

@@ -239,6 +239,7 @@ static void indev_proc_task(void * param)
indev_proc_point(&i->state);
}
else if (i->driver.type == LV_INDEV_TYPE_KEYPAD) {
#if LV_OBJ_GROUP != 0
if(i->group != NULL && data.state == LV_INDEV_EVENT_PR && data.key != 0) {
if(data.key == LV_GROUP_KEY_NEXT) {
lv_group_focus_next(i->group);
@@ -250,6 +251,7 @@ static void indev_proc_task(void * param)
lv_group_send_data(i->group, data.key);
}
}
#endif
}
}