mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-13 19:50:43 +02:00
GUI: setWalletActionsEnabled: Keep historyAction disabled if privacy mode is already on
This commit is contained in:
parent
30308cc380
commit
fe21e5bc03
@ -736,7 +736,7 @@ void BitcoinGUI::setWalletActionsEnabled(bool enabled)
|
|||||||
overviewAction->setEnabled(enabled);
|
overviewAction->setEnabled(enabled);
|
||||||
sendCoinsAction->setEnabled(enabled);
|
sendCoinsAction->setEnabled(enabled);
|
||||||
receiveCoinsAction->setEnabled(enabled);
|
receiveCoinsAction->setEnabled(enabled);
|
||||||
historyAction->setEnabled(enabled);
|
historyAction->setEnabled(enabled && !isPrivacyModeActivated());
|
||||||
encryptWalletAction->setEnabled(enabled);
|
encryptWalletAction->setEnabled(enabled);
|
||||||
backupWalletAction->setEnabled(enabled);
|
backupWalletAction->setEnabled(enabled);
|
||||||
changePassphraseAction->setEnabled(enabled);
|
changePassphraseAction->setEnabled(enabled);
|
||||||
|
Loading…
Reference in New Issue
Block a user