Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Format --nobuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Oct 22, 2023
1 parent 1cbd51a commit 942ef2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions applications/external/flipbip/flipbip.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ static void flipbip_scene_renew_dialog_callback(DialogExResult result, void* con
static void flipbip_wallet_create(void* context) {
FlipBip* app = context;
furi_assert(app);
scene_manager_set_scene_state(
app->scene_manager, FlipBipSceneMenu, SubmenuIndexScene1New);
scene_manager_set_scene_state(app->scene_manager, FlipBipSceneMenu, SubmenuIndexScene1New);
scene_manager_next_scene(app->scene_manager, FlipBipSceneScene_1);
}

Expand Down Expand Up @@ -171,7 +170,8 @@ FlipBip* flipbip_app_alloc() {
dialog_ex_set_context(app->renew_dialog, app);
dialog_ex_set_left_button_text(app->renew_dialog, "No");
dialog_ex_set_right_button_text(app->renew_dialog, "Yes");
dialog_ex_set_header(app->renew_dialog, "Current wallet\nWill be lost.\nProceed?", 16, 12, AlignLeft, AlignTop);
dialog_ex_set_header(
app->renew_dialog, "Current wallet\nWill be lost.\nProceed?", 16, 12, AlignLeft, AlignTop);
view_dispatcher_add_view(
app->view_dispatcher, FlipBipViewRenewConfirm, dialog_ex_get_view(app->renew_dialog));

Expand Down
4 changes: 1 addition & 3 deletions applications/external/flipbip/flipbip.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@

#define TEXT_BUFFER_SIZE 256



typedef struct {
Gui* gui;
// NotificationApp* notification;
Expand All @@ -50,7 +48,7 @@ typedef struct {
char import_mnemonic_text[TEXT_BUFFER_SIZE];
char input_text[TEXT_BUFFER_SIZE];

void (* wallet_create)(void* context);
void (*wallet_create)(void* context);
} FlipBip;

typedef enum {
Expand Down

0 comments on commit 942ef2c

Please sign in to comment.