summaryrefslogtreecommitdiff
path: root/src/plugins/git/branchview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/git/branchview.cpp')
-rw-r--r--src/plugins/git/branchview.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/git/branchview.cpp b/src/plugins/git/branchview.cpp
index 4e17f31686..4cabc58077 100644
--- a/src/plugins/git/branchview.cpp
+++ b/src/plugins/git/branchview.cpp
@@ -314,14 +314,16 @@ bool BranchView::add()
branchAddDialog.setTrackedBranchName(isTag ? QString() : trackedBranch, !isLocal);
if (branchAddDialog.exec() == QDialog::Accepted) {
- QModelIndex idx = m_model->addBranch(branchAddDialog.branchName(), branchAddDialog.track(), trackedIndex);
+ QModelIndex idx = m_model->addBranch(branchAddDialog.branchName(), branchAddDialog.track(),
+ trackedIndex);
if (!idx.isValid())
return false;
+ QModelIndex mappedIdx = m_filterModel->mapFromSource(idx);
QTC_ASSERT(m_branchView, return false);
- m_branchView->selectionModel()->select(idx, QItemSelectionModel::Clear
+ m_branchView->selectionModel()->select(mappedIdx, QItemSelectionModel::Clear
| QItemSelectionModel::Select
| QItemSelectionModel::Current);
- m_branchView->scrollTo(idx);
+ m_branchView->scrollTo(mappedIdx);
if (QMessageBox::question(this, tr("Checkout"), tr("Checkout branch?"),
QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
return checkout();