Skip to content

Commit 9a83d5a

Browse files
author
sc
committed
fix: remove startscreen
1 parent 927f45d commit 9a83d5a

14 files changed

Lines changed: 1 addition & 213 deletions

flipbip.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,6 @@ FlipBip* flipbip_app_alloc() {
118118

119119
view_dispatcher_add_view(
120120
app->view_dispatcher, FlipBipViewIdMenu, submenu_get_view(app->submenu));
121-
app->flipbip_startscreen = flipbip_startscreen_alloc();
122-
view_dispatcher_add_view(
123-
app->view_dispatcher,
124-
FlipBipViewIdStartscreen,
125-
flipbip_startscreen_get_view(app->flipbip_startscreen));
126121
app->flipbip_scene_1 = flipbip_scene_1_alloc();
127122
view_dispatcher_add_view(
128123
app->view_dispatcher, FlipBipViewIdScene1, flipbip_scene_1_get_view(app->flipbip_scene_1));
@@ -189,7 +184,7 @@ int32_t flipbip_app(void* p) {
189184
view_dispatcher_attach_to_gui(app->view_dispatcher, app->gui, ViewDispatcherTypeFullscreen);
190185

191186
scene_manager_next_scene(
192-
app->scene_manager, FlipBipSceneStartscreen); //Start with start screen
187+
app->scene_manager, FlipBipSceneMenu); //Start with start screen
193188
//scene_manager_next_scene(app->scene_manager, FlipBipSceneMenu); //if you want to directly start with Menu
194189

195190
furi_hal_power_suppress_charge_enter();

flipbip.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include <gui/modules/variable_item_list.h>
1313
#include <gui/modules/text_input.h>
1414
#include "scenes/flipbip_scene.h"
15-
#include "views/flipbip_startscreen.h"
1615
#include "views/flipbip_scene_1.h"
1716

1817
#define FLIPBIP_VERSION "v1.12.0"
@@ -32,7 +31,6 @@ typedef struct {
3231
SceneManager* scene_manager;
3332
VariableItemList* variable_item_list;
3433
TextInput* text_input;
35-
FlipBipStartscreen* flipbip_startscreen;
3634
FlipBipScene1* flipbip_scene_1;
3735
// Settings options
3836
int haptic;

icons/Auth_62x31.png

-3.67 KB
Binary file not shown.

icons/ButtonCenter_7x7.png

-1.41 KB
Binary file not shown.

icons/ButtonDown_10x5.png

-6.08 KB
Binary file not shown.

icons/ButtonLeftSmall_3x5.png

-1.7 KB
Binary file not shown.

icons/ButtonLeft_4x7.png

-1.38 KB
Binary file not shown.

icons/ButtonRightSmall_3x5.png

-1.7 KB
Binary file not shown.

icons/ButtonRight_4x7.png

-1.8 KB
Binary file not shown.

icons/ButtonUp_10x5.png

-6.09 KB
Binary file not shown.

0 commit comments

Comments
 (0)