qt: update widgets availability on wallet selection

The Transaction View should be only enabled when a wallet is selected.
Therefore it has been added a condition for a selected wallet on
enableHistoryAction() since its availability also depends on the mask
value checkbox.
This commit is contained in:
pablomartin4btc
2023-12-06 18:48:03 -03:00
parent 6d5790956f
commit b2e531e70a

View File

@@ -673,9 +673,11 @@ void BitcoinGUI::setClientModel(ClientModel *_clientModel, interfaces::BlockAndH
#ifdef ENABLE_WALLET #ifdef ENABLE_WALLET
void BitcoinGUI::enableHistoryAction(bool privacy) void BitcoinGUI::enableHistoryAction(bool privacy)
{ {
if (walletFrame->currentWalletModel()) {
historyAction->setEnabled(!privacy); historyAction->setEnabled(!privacy);
if (historyAction->isChecked()) gotoOverviewPage(); if (historyAction->isChecked()) gotoOverviewPage();
} }
}
void BitcoinGUI::setWalletController(WalletController* wallet_controller, bool show_loading_minimized) void BitcoinGUI::setWalletController(WalletController* wallet_controller, bool show_loading_minimized)
{ {