Skip to content

Commit

Permalink
Cleanup and fixing misc menu.
Browse files Browse the repository at this point in the history
  • Loading branch information
litui committed Oct 16, 2022
1 parent 3b366ce commit 85a5fed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 0 additions & 5 deletions dtmf_dolphin.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,10 @@ static void app_free(DTMFDolphinApp* app) {
variable_item_list_free(app->main_menu_list);

dtmf_dolphin_dialer_free(app->dtmf_dolphin_dialer);
// widget_free(app->dtmf_dolphin_play);

view_dispatcher_free(app->view_dispatcher);
scene_manager_free(app->scene_manager);

// button_panel_free(app->dialer_button_panel);
// button_panel_free(app->bluebox_button_panel);
// button_panel_free(app->redbox_button_panel);

notification_message(app->notification, &sequence_display_backlight_enforce_auto);

furi_record_close(RECORD_GUI);
Expand Down
5 changes: 5 additions & 0 deletions scenes/dtmf_dolphin_scene_start.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ static void dtmf_dolphin_scene_start_main_menu_enter_callback(void* context, uin
app->view_dispatcher,
DTMFDolphinEventStartBluebox
);
} else if (index == DTMFDolphinSceneStateMisc) {
view_dispatcher_send_custom_event(
app->view_dispatcher,
DTMFDolphinEventStartMisc
);
}
}

Expand Down

0 comments on commit 85a5fed

Please sign in to comment.