|
|
|
@ -1246,7 +1246,7 @@ void BitcoinGUI::setEncryptionStatus(int status)
|
|
|
|
|
labelWalletEncryptionIcon->setToolTip(tr("Wallet is <b>encrypted</b> and currently <b>unlocked</b>"));
|
|
|
|
|
encryptWalletAction->setChecked(true);
|
|
|
|
|
changePassphraseAction->setEnabled(true);
|
|
|
|
|
encryptWalletAction->setEnabled(false); // TODO: decrypt currently not supported
|
|
|
|
|
encryptWalletAction->setEnabled(false);
|
|
|
|
|
break;
|
|
|
|
|
case WalletModel::Locked:
|
|
|
|
|
labelWalletEncryptionIcon->show();
|
|
|
|
@ -1254,7 +1254,7 @@ void BitcoinGUI::setEncryptionStatus(int status)
|
|
|
|
|
labelWalletEncryptionIcon->setToolTip(tr("Wallet is <b>encrypted</b> and currently <b>locked</b>"));
|
|
|
|
|
encryptWalletAction->setChecked(true);
|
|
|
|
|
changePassphraseAction->setEnabled(true);
|
|
|
|
|
encryptWalletAction->setEnabled(false); // TODO: decrypt currently not supported
|
|
|
|
|
encryptWalletAction->setEnabled(false);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|