Skip to content
Snippets Groups Projects
Commit 4fc1856d authored by Thorbjørn Lindeijer's avatar Thorbjørn Lindeijer
Browse files

Don't open an editor when not clicking on a search result

This basically reverts change 01933445
parent 259357ed
No related branches found
No related tags found
No related merge requests found
...@@ -76,6 +76,9 @@ void SearchResultTreeView::appendResultLine(int index, const QString &fileName, ...@@ -76,6 +76,9 @@ void SearchResultTreeView::appendResultLine(int index, const QString &fileName,
void SearchResultTreeView::emitJumpToSearchResult(const QModelIndex &index) void SearchResultTreeView::emitJumpToSearchResult(const QModelIndex &index)
{ {
if (model()->data(index, ItemDataRoles::TypeRole).toString().compare("row") != 0)
return;
QString fileName = model()->data(index, ItemDataRoles::FileNameRole).toString(); QString fileName = model()->data(index, ItemDataRoles::FileNameRole).toString();
int position = model()->data(index, ItemDataRoles::ResultIndexRole).toInt(); int position = model()->data(index, ItemDataRoles::ResultIndexRole).toInt();
int lineNumber = model()->data(index, ItemDataRoles::ResultLineNumberRole).toInt(); int lineNumber = model()->data(index, ItemDataRoles::ResultLineNumberRole).toInt();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment