Merge pull request #1239 from Diapolo/testnet_GUI
GUI changes while on testnet
This commit is contained in:
commit
037a8daee6
1 changed files with 3 additions and 3 deletions
|
@ -324,8 +324,7 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel)
|
|||
{
|
||||
if(clientModel->isTestNet())
|
||||
{
|
||||
QString title_testnet = windowTitle() + QString(" ") + tr("[testnet]");
|
||||
setWindowTitle(title_testnet);
|
||||
setWindowTitle(windowTitle() + QString(" ") + tr("[testnet]"));
|
||||
#ifndef Q_WS_MAC
|
||||
setWindowIcon(QIcon(":icons/bitcoin_testnet"));
|
||||
#else
|
||||
|
@ -333,8 +332,9 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel)
|
|||
#endif
|
||||
if(trayIcon)
|
||||
{
|
||||
trayIcon->setToolTip(title_testnet);
|
||||
trayIcon->setToolTip(tr("Bitcoin client") + QString(" ") + tr("[testnet]"));
|
||||
trayIcon->setIcon(QIcon(":/icons/toolbar_testnet"));
|
||||
toggleHideAction->setIcon(QIcon(":/icons/toolbar_testnet"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue