From: José Fonseca Date: Sun, 30 Oct 2011 10:51:53 +0000 (+0000) Subject: Have selected call always match the current call. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=6068f67ba4689cea0ae5cb8f2c90e191eb622732;p=apitrace Have selected call always match the current call. The current call (highlighted with single-click or keyboard navigation) was serving no purpose, and this make navigation much more effective. --- diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 0c69506..f1678a8 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -760,7 +760,7 @@ void MainWindow::initConnections() connect(m_ui.actionOptions, SIGNAL(triggered()), this, SLOT(showSettings())); - connect(m_ui.callView, SIGNAL(activated(const QModelIndex &)), + connect(m_ui.callView->selectionModel(), SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)), this, SLOT(callItemSelected(const QModelIndex &))); connect(m_ui.callView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(customContextMenuRequested(QPoint)));