Skip to content

Commit

Permalink
Better locator display name
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jul 28, 2020
1 parent 44fd606 commit 5ee8e54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/locator/qgsinbuiltlocatorfilters.h
Expand Up @@ -143,7 +143,7 @@ class APP_EXPORT QgsAllLayersFeaturesLocatorFilter : public QgsLocatorFilter
QgsAllLayersFeaturesLocatorFilter( QObject *parent = nullptr );
QgsAllLayersFeaturesLocatorFilter *clone() const override;
QString name() const override { return QStringLiteral( "allfeatures" ); }
QString displayName() const override { return tr( "Features In All Layers" ); }
QString displayName() const override { return tr( "Features in All Layers" ); }
Priority priority() const override { return Medium; }
QString prefix() const override { return QStringLiteral( "af" ); }

Expand Down Expand Up @@ -229,7 +229,7 @@ class APP_EXPORT QgsGotoLocatorFilter : public QgsLocatorFilter
QgsGotoLocatorFilter( QObject *parent = nullptr );
QgsGotoLocatorFilter *clone() const override;
virtual QString name() const override { return QStringLiteral( "goto" ); }
virtual QString displayName() const override { return tr( "Go to" ); }
virtual QString displayName() const override { return tr( "Go to Coordinate" ); }
virtual Priority priority() const override { return Medium; }
QString prefix() const override { return QStringLiteral( "goto" ); }

Expand Down

0 comments on commit 5ee8e54

Please sign in to comment.