diff --git a/applications/external/esubghz_chat/assets/hex_10px.png b/applications/external/esubghz_chat/assets/hex_10px.png new file mode 100644 index 000000000..582e288c6 Binary files /dev/null and b/applications/external/esubghz_chat/assets/hex_10px.png differ diff --git a/applications/external/esubghz_chat/scenes/esubghz_chat_key_menu.c b/applications/external/esubghz_chat/scenes/esubghz_chat_key_menu.c index 4e54e692f..13483bf53 100644 --- a/applications/external/esubghz_chat/scenes/esubghz_chat_key_menu.c +++ b/applications/external/esubghz_chat/scenes/esubghz_chat_key_menu.c @@ -76,20 +76,30 @@ void scene_on_enter_key_menu(void* context) { menu_add_item( state->menu, "No encryption", - NULL, + &I_chat_10px, ESubGhzChatKeyMenuItems_NoEncryption, key_menu_cb, state); menu_add_item( - state->menu, "Password", NULL, ESubGhzChatKeyMenuItems_Password, key_menu_cb, state); + state->menu, + "Password", + &I_keyboard_10px, + ESubGhzChatKeyMenuItems_Password, + key_menu_cb, + state); menu_add_item( - state->menu, "Hex Key", NULL, ESubGhzChatKeyMenuItems_HexKey, key_menu_cb, state); + state->menu, "Hex Key", &I_hex_10px, ESubGhzChatKeyMenuItems_HexKey, key_menu_cb, state); menu_add_item( - state->menu, "Generate Key", NULL, ESubGhzChatKeyMenuItems_GenKey, key_menu_cb, state); + state->menu, + "Generate Key", + &I_u2f_10px, + ESubGhzChatKeyMenuItems_GenKey, + key_menu_cb, + state); menu_add_item( state->menu, "Read Key from NFC", - NULL, + &I_Nfc_10px, ESubGhzChatKeyMenuItems_ReadKeyFromNfc, key_menu_cb, state);