瀏覽代碼

chore: comments

Struan Clark 2 年之前
父節點
當前提交
656c41041d
共有 2 個文件被更改,包括 6 次插入6 次删除
  1. 5 5
      flipbip.c
  2. 1 1
      scenes/flipbip_scene_menu.c

+ 5 - 5
flipbip.c

@@ -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);
 
@@ -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;
 }

+ 1 - 1
scenes/flipbip_scene_menu.c

@@ -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,