when clicking a transaction on the overview page, send the user to the transactions page

This commit is contained in:
Wladimir J. van der Laan
2011-08-04 04:41:01 +02:00
parent 186f3e2f0c
commit 1b39201966
3 changed files with 15 additions and 4 deletions

View File

@@ -154,7 +154,10 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):
syncIconMovie = new QMovie(":/movies/update_spinner", "mng", this);
gotoOverviewPage();
// Clicking on a transaction simply sends you to transaction history page
connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage()));
gotoOverviewPage();
}
void BitcoinGUI::createActions()