Swipe events didn't update the state/page

This commit is contained in:
fvanroie 2021-04-17 19:47:11 +02:00
parent 52fd90cf46
commit f19aefbbb4

View File

@ -249,7 +249,10 @@ void swipe_event_handler(lv_obj_t* obj, lv_event_t event)
case LV_GESTURE_DIR_BOTTOM: case LV_GESTURE_DIR_BOTTOM:
haspPages.back(LV_SCR_LOAD_ANIM_NONE); haspPages.back(LV_SCR_LOAD_ANIM_NONE);
break; break;
default:
return;
} }
dispatch_output_current_page();
} }
} }