|
|
@ -682,8 +682,6 @@ void BitcoinGUI::addWallet(WalletModel* walletModel)
|
|
|
|
m_wallet_selector_label_action->setVisible(true);
|
|
|
|
m_wallet_selector_label_action->setVisible(true);
|
|
|
|
m_wallet_selector_action->setVisible(true);
|
|
|
|
m_wallet_selector_action->setVisible(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const QString display_name = walletModel->getDisplayName();
|
|
|
|
|
|
|
|
m_wallet_selector->addItem(display_name, QVariant::fromValue(walletModel));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
connect(wallet_view, &WalletView::outOfSyncWarningClicked, this, &BitcoinGUI::showModalOverlay);
|
|
|
|
connect(wallet_view, &WalletView::outOfSyncWarningClicked, this, &BitcoinGUI::showModalOverlay);
|
|
|
|
connect(wallet_view, &WalletView::transactionClicked, this, &BitcoinGUI::gotoHistoryPage);
|
|
|
|
connect(wallet_view, &WalletView::transactionClicked, this, &BitcoinGUI::gotoHistoryPage);
|
|
|
@ -696,6 +694,8 @@ void BitcoinGUI::addWallet(WalletModel* walletModel)
|
|
|
|
connect(wallet_view, &WalletView::hdEnabledStatusChanged, this, &BitcoinGUI::updateWalletStatus);
|
|
|
|
connect(wallet_view, &WalletView::hdEnabledStatusChanged, this, &BitcoinGUI::updateWalletStatus);
|
|
|
|
connect(this, &BitcoinGUI::setPrivacy, wallet_view, &WalletView::setPrivacy);
|
|
|
|
connect(this, &BitcoinGUI::setPrivacy, wallet_view, &WalletView::setPrivacy);
|
|
|
|
wallet_view->setPrivacy(isPrivacyModeActivated());
|
|
|
|
wallet_view->setPrivacy(isPrivacyModeActivated());
|
|
|
|
|
|
|
|
const QString display_name = walletModel->getDisplayName();
|
|
|
|
|
|
|
|
m_wallet_selector->addItem(display_name, QVariant::fromValue(walletModel));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BitcoinGUI::removeWallet(WalletModel* walletModel)
|
|
|
|
void BitcoinGUI::removeWallet(WalletModel* walletModel)
|
|
|
|