gui: Fix window title update

This commit is contained in:
João Barbosa 2019-01-19 21:17:51 +00:00
parent fe60ee96e9
commit 1ed425ea17

View file

@ -1225,16 +1225,18 @@ void BitcoinGUI::updateProxyIcon()
void BitcoinGUI::updateWindowTitle()
{
QString window_title = tr(PACKAGE_NAME) + " - ";
QString window_title = tr(PACKAGE_NAME);
#ifdef ENABLE_WALLET
if (walletFrame) {
WalletModel* const wallet_model = walletFrame->currentWalletModel();
if (wallet_model && !wallet_model->getWalletName().isEmpty()) {
window_title += wallet_model->getDisplayName() + " - ";
window_title += " - " + wallet_model->getDisplayName();
}
}
#endif
window_title += m_network_style->getTitleAddText();
if (!m_network_style->getTitleAddText().isEmpty()) {
window_title += " - " + m_network_style->getTitleAddText();
}
setWindowTitle(window_title);
}