summaryrefslogtreecommitdiff
path: root/src/plugins/git/logchangedialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/git/logchangedialog.cpp')
-rw-r--r--src/plugins/git/logchangedialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/git/logchangedialog.cpp b/src/plugins/git/logchangedialog.cpp
index 6a316765b1..a52e1b7e9f 100644
--- a/src/plugins/git/logchangedialog.cpp
+++ b/src/plugins/git/logchangedialog.cpp
@@ -130,7 +130,8 @@ void LogChangeWidget::selectionChanged(const QItemSelection &selected,
if (!m_hasCustomDelegate)
return;
const QModelIndexList previousIndexes = deselected.indexes();
- QTC_ASSERT(!previousIndexes.isEmpty(), return);
+ if (previousIndexes.isEmpty())
+ return;
const QModelIndex current = currentIndex();
int row = current.row();
int previousRow = previousIndexes.first().row();