Skip to content
Snippets Groups Projects
Commit fb10a234 authored by con's avatar con
Browse files

Re-enable expanding on double-click in search results pane.

For some items with Symbols Search this will now both expand and jump to the
result.
parent c7278acd
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ enum Roles
ResultIconRole,
SearchTermStartRole,
SearchTermLengthRole,
RowOfItem // The ?-th child of its parent is this this item
IsGeneratedRole
};
} // namespace Internal
......
......@@ -217,6 +217,9 @@ QVariant SearchResultTreeModel::data(const SearchResultTreeItem *row, int role)
case ItemDataRoles::SearchTermLengthRole:
result = row->item.textMarkLength;
break;
case ItemDataRoles::IsGeneratedRole:
result = row->isGenerated();
break;
// TODO this looks stupid in case of symbol tree, is it necessary?
// case Qt::BackgroundRole:
// if (row->parent() && row->parent()->parent())
......
......@@ -46,7 +46,7 @@ SearchResultTreeView::SearchResultTreeView(QWidget *parent)
setItemDelegate(new SearchResultTreeItemDelegate(this));
setIndentation(14);
setUniformRowHeights(true);
setExpandsOnDoubleClick(false);
setExpandsOnDoubleClick(true);
header()->hide();
connect(this, SIGNAL(activated(QModelIndex)), this, SLOT(emitJumpToSearchResult(QModelIndex)));
......@@ -78,6 +78,8 @@ void SearchResultTreeView::addResults(const QList<Find::SearchResultItem> &items
void SearchResultTreeView::emitJumpToSearchResult(const QModelIndex &index)
{
if (model()->data(index, ItemDataRoles::IsGeneratedRole).toBool())
return;
SearchResultItem item = model()->data(index, ItemDataRoles::ResultItemRole).value<SearchResultItem>();
emit jumpToSearchResult(item);
......
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