diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-12 13:19:44 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-05-12 15:32:22 +0200 |
commit | 3ef1f41550d5e9ba032dcc5e550e5f85f7e6aa07 (patch) | |
tree | 539fbe8f11a60658365969b759aa44f82bc73e94 /src/qt/bitcoingui.cpp | |
parent | 97ec4e50b128c201c82dd76b28ab44508d85e94f (diff) |
When a transaction is clicked on overview page, focus it on history page
Diffstat (limited to 'src/qt/bitcoingui.cpp')
-rw-r--r-- | src/qt/bitcoingui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 74969fc6f3..ae9bf2a4b9 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -157,6 +157,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): // Clicking on a transaction on the overview page simply sends you to transaction history page connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage())); + connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex))); // Doubleclicking on a transaction on the transaction history page shows details connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails())); |