Skip to content

Commit 486f510

Browse files
committed
gui: hide HD & encryption icons when no wallet loaded
1 parent ac61ec9 commit 486f510

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/qt/bitcoingui.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,8 @@ void BitcoinGUI::removeWallet(WalletModel* walletModel)
659659
rpcConsole->removeWallet(walletModel);
660660
walletFrame->removeWallet(walletModel);
661661
updateWindowTitle();
662+
labelWalletHDStatusIcon->hide();
663+
labelWalletEncryptionIcon->hide();
662664
}
663665

664666
void BitcoinGUI::setCurrentWallet(WalletModel* wallet_model)
@@ -1209,7 +1211,7 @@ void BitcoinGUI::setHDStatus(bool privkeyDisabled, int hdEnabled)
12091211
{
12101212
labelWalletHDStatusIcon->setPixmap(platformStyle->SingleColorIcon(privkeyDisabled ? ":/icons/eye" : hdEnabled ? ":/icons/hd_enabled" : ":/icons/hd_disabled").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE));
12111213
labelWalletHDStatusIcon->setToolTip(privkeyDisabled ? tr("Private key <b>disabled</b>") : hdEnabled ? tr("HD key generation is <b>enabled</b>") : tr("HD key generation is <b>disabled</b>"));
1212-
1214+
labelWalletHDStatusIcon->show();
12131215
// eventually disable the QLabel to set its opacity to 50%
12141216
labelWalletHDStatusIcon->setEnabled(hdEnabled);
12151217
}

0 commit comments

Comments
 (0)