feat(indev): make indevs event based

This commit is contained in:
Gabor Kiss-Vamosi
2023-11-13 19:46:31 +01:00
parent ebc2433309
commit 2fe80e0aa1
5 changed files with 202 additions and 77 deletions

View File

@@ -306,7 +306,6 @@ static lv_result_t event_send_core(lv_event_t * e)
/*Call the input device's feedback callback if set*/
lv_indev_t * indev_act = lv_indev_active();
if(indev_act) {
if(indev_act->feedback_cb) indev_act->feedback_cb(indev_act, e);
if(e->stop_processing) return LV_RESULT_OK;
if(e->deleted) return LV_RESULT_INVALID;
}