Skip to content

Commit 85a5fed

Browse files
committed
Cleanup and fixing misc menu.
1 parent 3b366ce commit 85a5fed

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

dtmf_dolphin.c

-5
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,10 @@ static void app_free(DTMFDolphinApp* app) {
6767
variable_item_list_free(app->main_menu_list);
6868

6969
dtmf_dolphin_dialer_free(app->dtmf_dolphin_dialer);
70-
// widget_free(app->dtmf_dolphin_play);
7170

7271
view_dispatcher_free(app->view_dispatcher);
7372
scene_manager_free(app->scene_manager);
7473

75-
// button_panel_free(app->dialer_button_panel);
76-
// button_panel_free(app->bluebox_button_panel);
77-
// button_panel_free(app->redbox_button_panel);
78-
7974
notification_message(app->notification, &sequence_display_backlight_enforce_auto);
8075

8176
furi_record_close(RECORD_GUI);

scenes/dtmf_dolphin_scene_start.c

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ static void dtmf_dolphin_scene_start_main_menu_enter_callback(void* context, uin
1212
app->view_dispatcher,
1313
DTMFDolphinEventStartBluebox
1414
);
15+
} else if (index == DTMFDolphinSceneStateMisc) {
16+
view_dispatcher_send_custom_event(
17+
app->view_dispatcher,
18+
DTMFDolphinEventStartMisc
19+
);
1520
}
1621
}
1722

0 commit comments

Comments
 (0)