Skip to content

Commit 656c410

Browse files
committed
chore: comments
1 parent 49a22aa commit 656c410

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

flipbip.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ FlipBip* flipbip_app_alloc() {
9595
app->gui = furi_record_open(RECORD_GUI);
9696
//app->notification = furi_record_open(RECORD_NOTIFICATION);
9797

98-
//Turn backlight on, believe me this makes testing your app easier
98+
// Turn backlight on, believe me this makes testing your app easier
9999
//notification_message(app->notification, &sequence_display_backlight_on);
100100

101-
//Scene additions
101+
// Scene additions
102102
app->view_dispatcher = view_dispatcher_alloc();
103103
view_dispatcher_enable_queue(app->view_dispatcher);
104104

@@ -143,13 +143,13 @@ FlipBip* flipbip_app_alloc() {
143143
(void*)app,
144144
app->input_text,
145145
TEXT_BUFFER_SIZE,
146-
//clear default text
146+
// clear default text
147147
true);
148-
text_input_set_header_text(app->text_input, "Input");
148+
//text_input_set_header_text(app->text_input, "Input");
149149
view_dispatcher_add_view(
150150
app->view_dispatcher, FlipBipViewIdTextInput, text_input_get_view(app->text_input));
151151

152-
//End Scene Additions
152+
// End Scene Additions
153153

154154
return app;
155155
}

scenes/flipbip_scene_menu.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "../flipbip.h"
22
#include "../helpers/flipbip_file.h"
33

4-
#define FLIPBIP_SUBMENU_TEXT "- FlipBIP wallet " FLIPBIP_VERSION " -"
4+
#define FLIPBIP_SUBMENU_TEXT "* FlipBIP wallet " FLIPBIP_VERSION " *"
55

66
enum SubmenuIndex {
77
SubmenuIndexScene1BTC = 10,

0 commit comments

Comments
 (0)