Skip to content

Commit

Permalink
gui: Fix TransactionsView on setCurrentWallet
Browse files Browse the repository at this point in the history
Making sure that if the privacy mode is activaded during
the wallet selection, the transaction view is not shown.
  • Loading branch information
pablomartin4btc committed May 23, 2024
1 parent b2e531e commit 6180086
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -731,9 +731,7 @@ void BitcoinGUI::addWallet(WalletModel* walletModel)
connect(wallet_view, &WalletView::encryptionStatusChanged, this, &BitcoinGUI::updateWalletStatus);
connect(wallet_view, &WalletView::incomingTransaction, this, &BitcoinGUI::incomingTransaction);
connect(this, &BitcoinGUI::setPrivacy, wallet_view, &WalletView::setPrivacy);
const bool privacy = isPrivacyModeActivated();
wallet_view->setPrivacy(privacy);
enableHistoryAction(privacy);
wallet_view->setPrivacy(isPrivacyModeActivated());
const QString display_name = walletModel->getDisplayName();
m_wallet_selector->addItem(display_name, QVariant::fromValue(walletModel));
}
Expand Down Expand Up @@ -769,6 +767,7 @@ void BitcoinGUI::setCurrentWallet(WalletModel* wallet_model)
break;
}
}
setWalletActionsEnabled(true);
updateWindowTitle();
m_migrate_wallet_action->setEnabled(wallet_model->wallet().isLegacy());
}
Expand Down Expand Up @@ -805,6 +804,9 @@ void BitcoinGUI::setWalletActionsEnabled(bool enabled)
m_close_wallet_action->setEnabled(enabled);
m_close_all_wallets_action->setEnabled(enabled);
m_migrate_wallet_action->setEnabled(enabled);
#ifdef ENABLE_WALLET
enableHistoryAction(enabled || isPrivacyModeActivated());
#endif // ENABLE_WALLET
}

void BitcoinGUI::createTrayIcon()
Expand Down

0 comments on commit 6180086

Please sign in to comment.