What changed, and why it matters
This commit simply swaps one icon image for another in the wallet creation screen. It changes the picture shown next to the 'change entropy' menu option from a generic connection icon to a dice icon. There is no security-relevant change.
No action required; this is a cosmetic icon update.
Security signals we found
No strong security signals were identified.
Evidence from the diff
A single-line UI change in src/ui/gui_widgets/gui_create_wallet_widgets.c replaces the .src pointer for the ‘change_entropy’ menu entry from &imgConnect to &imgDice. The callback (OpenChangeEntropyHandler) and all surrounding logic remain unchanged. No functional, cryptographic, or security behavior is modified.
Changed components
src/ui/gui_widgets/gui_create_wallet_widgets.cInspect captured patch +1 / −1
diff --git a/src/ui/gui_widgets/gui_create_wallet_widgets.c b/src/ui/gui_widgets/gui_create_wallet_widgets.c
index b14e2de..da08cf0 100644
--- a/src/ui/gui_widgets/gui_create_wallet_widgets.c
+++ b/src/ui/gui_widgets/gui_create_wallet_widgets.c
@@ -513,7 +513,7 @@ static void OpenMoreHandler(lv_event_t *e)
const char *passphraseText = GuiCreateWalletNeedPassphrase() ? _("disable_passphrase") : _("enable_passphrase");
if (g_createWalletTileView.walletMethod == WALLET_METHOD_CREATE) {
MoreInfoTable_t moreInfoTable[] = {
- {.name = _("change_entropy"), .src = &imgConnect, .callBack = OpenChangeEntropyHandler, NULL},
+ {.name = _("change_entropy"), .src = &imgDice, .callBack = OpenChangeEntropyHandler, NULL},
{.name = passphraseText, .src = &imgEnterPassphrase, .callBack = PassphraseButtonHandler, NULL},
#ifdef WEB3_VERSION
{.name = _("generate_ton_mnenonic"), .src = &imgTonPhrase, .callBack = TonPhraseButtonHandler, NULL},
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.