GUI: fix issue with gui update on view draw (#301)

This commit is contained in:
あく
2021-01-11 15:20:29 +03:00
committed by GitHub
parent 6126d117a9
commit 34dbb2ea86
2 changed files with 12 additions and 4 deletions

View File

@@ -23,6 +23,9 @@ struct View {
/* Set View dispatcher */
void view_set_dispatcher(View* view, ViewDispatcher* view_dispatcher);
/* Unlock model */
void view_unlock_model(View* view);
/* Draw Callback for View dispatcher */
void view_draw(View* view, Canvas* canvas);