From d3da5025f61534d126fef12f198afb65f3a17897 Mon Sep 17 00:00:00 2001 From: pablomartin4btc Date: Tue, 9 Apr 2024 15:53:38 -0300 Subject: [PATCH] gui: Fix TransactionsView on setCurrentWallet Making sure that if the privacy mode is activaded during the wallet selection, the transaction view is not shown. --- src/qt/bitcoingui.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 3e177af53cd..05740ab8dee 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -769,6 +769,7 @@ void BitcoinGUI::setCurrentWallet(WalletModel* wallet_model) break; } } + enableHistoryAction(isPrivacyModeActivated()); updateWindowTitle(); m_migrate_wallet_action->setEnabled(wallet_model->wallet().isLegacy()); }