Skip to content

Commit

Permalink
Disable dynamic reapply of DataFilter
Browse files Browse the repository at this point in the history
When activities list is filtered, RideNavigator lose the focus on selected
activity if the filter is reapplied on rideSelected.
Fixes #3341
  • Loading branch information
amtriathlon committed Jun 27, 2021
1 parent 7540b69 commit 0dd9d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/DataFilter.cpp
Expand Up @@ -2715,7 +2715,7 @@ DataFilter::DataFilter(QObject *parent, Context *context) : QObject(parent), con

configChanged(CONFIG_FIELDS);
connect(context, SIGNAL(configChanged(qint32)), this, SLOT(configChanged(qint32)));
connect(context, SIGNAL(rideSelected(RideItem*)), this, SLOT(dynamicParse()));
//connect(context, SIGNAL(rideSelected(RideItem*)), this, SLOT(dynamicParse()));
}

DataFilter::DataFilter(QObject *parent, Context *context, QString formula) : QObject(parent), context(context), treeRoot(NULL)
Expand Down

0 comments on commit 0dd9d04

Please sign in to comment.