aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/widgets/profile_tree_view.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/qt/widgets/profile_tree_view.cpp b/ui/qt/widgets/profile_tree_view.cpp
index 06b307fe28..b339a9f758 100644
--- a/ui/qt/widgets/profile_tree_view.cpp
+++ b/ui/qt/widgets/profile_tree_view.cpp
@@ -86,9 +86,10 @@ void ProfileTreeView::selectionChanged(const QItemSelection &selected, const QIt
QTreeView::selectionChanged(selected, deselected);
}
-void ProfileTreeView::currentChanged(const QModelIndex &, const QModelIndex &)
+void ProfileTreeView::currentChanged(const QModelIndex &current, const QModelIndex &previous)
{
emit currentItemChanged();
+ QTreeView::currentChanged(current, previous);
}
void ProfileTreeView::clicked(const QModelIndex &index)