Skip to content

Commit

Permalink
chore: remove mtp
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex4386 committed Jun 6, 2024
1 parent 4b632c0 commit 0e05046
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 128 deletions.
5 changes: 0 additions & 5 deletions src/scenes/home/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,6 @@ void Home_on_submenu_item(void* context, uint32_t index) {
FURI_LOG_I("DemoApp", "About");
scene_manager_next_scene(app->scene_manager, About);
break;
case 2:
FURI_LOG_I("DemoApp", "MTP");
scene_manager_next_scene(app->scene_manager, MTP);
break;
case 99:
FURI_LOG_I("DemoApp", "Exit");
Home_on_exit(app);
Expand All @@ -86,7 +82,6 @@ void Home_on_enter(void* context) {

submenu_add_item(home->menu, "Hello World", 0, Home_on_submenu_item, app);
submenu_add_item(home->menu, "About", 1, Home_on_submenu_item, app);
submenu_add_item(home->menu, "MTP", 2, Home_on_submenu_item, app);
submenu_add_item(home->menu, "Exit", 99, Home_on_submenu_item, app);

view_dispatcher_switch_to_view(app->view_dispatcher, THIS_SCENE);
Expand Down
1 change: 0 additions & 1 deletion src/scenes/import.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@

#include "home/main.h"
#include "about/main.h"
#include "mtp/main.h"
1 change: 0 additions & 1 deletion src/scenes/list.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@

SCENE_ACTION(Home)
SCENE_ACTION(About)
SCENE_ACTION(MTP)
103 changes: 0 additions & 103 deletions src/scenes/mtp/main.c

This file was deleted.

18 changes: 0 additions & 18 deletions src/scenes/mtp/main.h

This file was deleted.

0 comments on commit 0e05046

Please sign in to comment.