Skip to content

Commit

Permalink
chore: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
xtruan committed Aug 11, 2023
1 parent 49a22aa commit 656c410
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions flipbip.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ FlipBip* flipbip_app_alloc() {
app->gui = furi_record_open(RECORD_GUI);
//app->notification = furi_record_open(RECORD_NOTIFICATION);

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

//Scene additions
// Scene additions
app->view_dispatcher = view_dispatcher_alloc();
view_dispatcher_enable_queue(app->view_dispatcher);

Expand Down Expand Up @@ -143,13 +143,13 @@ FlipBip* flipbip_app_alloc() {
(void*)app,
app->input_text,
TEXT_BUFFER_SIZE,
//clear default text
// clear default text
true);
text_input_set_header_text(app->text_input, "Input");
//text_input_set_header_text(app->text_input, "Input");
view_dispatcher_add_view(
app->view_dispatcher, FlipBipViewIdTextInput, text_input_get_view(app->text_input));

//End Scene Additions
// End Scene Additions

return app;
}
Expand Down
2 changes: 1 addition & 1 deletion scenes/flipbip_scene_menu.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "../flipbip.h"
#include "../helpers/flipbip_file.h"

#define FLIPBIP_SUBMENU_TEXT "- FlipBIP wallet " FLIPBIP_VERSION " -"
#define FLIPBIP_SUBMENU_TEXT "* FlipBIP wallet " FLIPBIP_VERSION " *"

enum SubmenuIndex {
SubmenuIndexScene1BTC = 10,
Expand Down

0 comments on commit 656c410

Please sign in to comment.