Browse Source

Merge pull request #3438

d2b6de0 qt: Make sure overviewpage button is pressed at startup (Wladimir J. van der Laan)
0.10
Wladimir J. van der Laan 11 years ago
parent
commit
cc661b4d7f
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 3
      src/qt/bitcoingui.cpp

3
src/qt/bitcoingui.cpp

@ -215,6 +215,8 @@ void BitcoinGUI::createActions(bool fIsTestnet) @@ -215,6 +215,8 @@ void BitcoinGUI::createActions(bool fIsTestnet)
historyAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_4));
tabGroup->addAction(historyAction);
// These showNormalIfMinimized are needed because Send Coins and Receive Coins
// can be triggered from the tray menu, and need to show the GUI to be useful.
connect(overviewAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
connect(overviewAction, SIGNAL(triggered()), this, SLOT(gotoOverviewPage()));
connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
@ -331,6 +333,7 @@ void BitcoinGUI::createToolBars() @@ -331,6 +333,7 @@ void BitcoinGUI::createToolBars()
toolbar->addAction(sendCoinsAction);
toolbar->addAction(receiveCoinsAction);
toolbar->addAction(historyAction);
overviewAction->setChecked(true);
}
void BitcoinGUI::setClientModel(ClientModel *clientModel)

Loading…
Cancel
Save