Jelajahi Sumber

Resize key menu icons so that they are centered

twisted_pear 2 tahun lalu
induk
melakukan
f8ccb1a84c
10 mengubah file dengan 5 tambahan dan 5 penghapusan
  1. TEMPAT SAMPAH
      assets/Nfc_10px.png
  2. TEMPAT SAMPAH
      assets/Nfc_14px.png
  3. TEMPAT SAMPAH
      assets/chat_14px.png
  4. TEMPAT SAMPAH
      assets/hex_10px.png
  5. TEMPAT SAMPAH
      assets/hex_14px.png
  6. TEMPAT SAMPAH
      assets/keyboard_10px.png
  7. TEMPAT SAMPAH
      assets/keyboard_14px.png
  8. TEMPAT SAMPAH
      assets/u2f_10px.png
  9. TEMPAT SAMPAH
      assets/u2f_14px.png
  10. 5 5
      scenes/esubghz_chat_key_menu.c

TEMPAT SAMPAH
assets/Nfc_10px.png


TEMPAT SAMPAH
assets/Nfc_14px.png


TEMPAT SAMPAH
assets/chat_14px.png


TEMPAT SAMPAH
assets/hex_10px.png


TEMPAT SAMPAH
assets/hex_14px.png


TEMPAT SAMPAH
assets/keyboard_10px.png


TEMPAT SAMPAH
assets/keyboard_14px.png


TEMPAT SAMPAH
assets/u2f_10px.png


TEMPAT SAMPAH
assets/u2f_14px.png


+ 5 - 5
scenes/esubghz_chat_key_menu.c

@@ -83,7 +83,7 @@ void scene_on_enter_key_menu(void* context)
 	menu_add_item(
 		state->menu,
 		"No encryption",
-		&I_chat_10px,
+		&I_chat_14px,
 		ESubGhzChatKeyMenuItems_NoEncryption,
 		key_menu_cb,
 		state
@@ -91,7 +91,7 @@ void scene_on_enter_key_menu(void* context)
 	menu_add_item(
 		state->menu,
 		"Password",
-		&I_keyboard_10px,
+		&I_keyboard_14px,
 		ESubGhzChatKeyMenuItems_Password,
 		key_menu_cb,
 		state
@@ -99,7 +99,7 @@ void scene_on_enter_key_menu(void* context)
 	menu_add_item(
 		state->menu,
 		"Hex Key",
-		&I_hex_10px,
+		&I_hex_14px,
 		ESubGhzChatKeyMenuItems_HexKey,
 		key_menu_cb,
 		state
@@ -107,7 +107,7 @@ void scene_on_enter_key_menu(void* context)
 	menu_add_item(
 		state->menu,
 		"Generate Key",
-		&I_u2f_10px,
+		&I_u2f_14px,
 		ESubGhzChatKeyMenuItems_GenKey,
 		key_menu_cb,
 		state
@@ -115,7 +115,7 @@ void scene_on_enter_key_menu(void* context)
 	menu_add_item(
 		state->menu,
 		"Read Key from NFC",
-		&I_Nfc_10px,
+		&I_Nfc_14px,
 		ESubGhzChatKeyMenuItems_ReadKeyFromNfc,
 		key_menu_cb,
 		state