diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-05-12 13:19:44 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-05-12 15:32:22 +0200 |
| commit | 3ef1f41550d5e9ba032dcc5e550e5f85f7e6aa07 (patch) | |
| tree | 539fbe8f11a60658365969b759aa44f82bc73e94 /src/qt/bitcoingui.cpp | |
| parent | Merge pull request #1263 from Diapolo/RPCCon_ClientStartupTime (diff) | |
| download | discoin-3ef1f41550d5e9ba032dcc5e550e5f85f7e6aa07.tar.xz discoin-3ef1f41550d5e9ba032dcc5e550e5f85f7e6aa07.zip | |
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 74969fc6f..ae9bf2a4b 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())); |