Ver Fonte

fix: Icon fixed

QtRoS há 2 anos atrás
pai
commit
c8271370c9
3 ficheiros alterados com 3 adições e 3 exclusões
  1. 1 2
      application.fam
  2. 1 0
      hex_viewer.h
  3. 1 1
      scenes/hex_viewer_scene_scene_4.c

+ 1 - 2
application.fam

@@ -12,7 +12,6 @@ App(
     order=20,
     fap_libs=["assets"],
     fap_icon="icons/hex_10px.png",
-	fap_icon_assets="icons",
+    fap_icon_assets="icons",
     fap_category="Tools",
-
 )

+ 1 - 0
hex_viewer.h

@@ -6,6 +6,7 @@
 #include <input/input.h>
 #include <stdlib.h>
 #include <assets_icons.h>
+#include <hex_viewer_icons.h>
 #include <dialogs/dialogs.h>
 #include <notification/notification_messages.h>
 #include <gui/view_dispatcher.h>

+ 1 - 1
scenes/hex_viewer_scene_scene_4.c

@@ -22,7 +22,7 @@ void hex_viewer_scene_scene_4_on_enter(void* context) {
 
     DialogsFileBrowserOptions browser_options;
     dialog_file_browser_set_basic_options(
-        &browser_options, HEX_VIEWER_APP_EXTENSION, &I_u2f_10px); // I_u2f_10px I_hex_10px
+        &browser_options, HEX_VIEWER_APP_EXTENSION, &I_hex_10px);
     browser_options.hide_ext = false;
 
     bool success = dialog_file_browser_show(app->dialogs, app->file_path, initial_path, &browser_options);