Format and remove view_dispatcher_enable_queue()

This commit is contained in:
Willy-JL
2024-08-14 04:30:46 +02:00
parent dfbba6a593
commit 57858bd846
6 changed files with 2 additions and 4 deletions

View File

@@ -320,7 +320,6 @@ BadKbApp* bad_kb_app_alloc(char* arg) {
app->dialogs = furi_record_open(RECORD_DIALOGS);
app->view_dispatcher = view_dispatcher_alloc();
view_dispatcher_enable_queue(app->view_dispatcher);
app->scene_manager = scene_manager_alloc(&bad_kb_scene_handlers, app);

View File

@@ -194,7 +194,7 @@ MomentumApp* momentum_app_alloc() {
// View Dispatcher and Scene Manager
app->view_dispatcher = view_dispatcher_alloc();
app->scene_manager = scene_manager_alloc(&momentum_app_scene_handlers, app);
view_dispatcher_enable_queue(app->view_dispatcher);
view_dispatcher_set_event_callback_context(app->view_dispatcher, app);
view_dispatcher_set_custom_event_callback(

View File

@@ -20,7 +20,6 @@ static FindMy* findmy_app_alloc() {
app->dialogs = furi_record_open(RECORD_DIALOGS);
app->view_dispatcher = view_dispatcher_alloc();
view_dispatcher_enable_queue(app->view_dispatcher);
app->scene_manager = scene_manager_alloc(&findmy_scene_handlers, app);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 110 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 110 B