Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Omogenize window title for select by expression
  • Loading branch information
pigreco authored and nyalldawson committed Apr 12, 2020
1 parent 839a1b8 commit c952f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsexpressionselectiondialog.cpp
Expand Up @@ -42,7 +42,7 @@ QgsExpressionSelectionDialog::QgsExpressionSelectionDialog( QgsVectorLayer *laye
connect( mButtonZoomToFeatures, &QToolButton::clicked, this, &QgsExpressionSelectionDialog::mButtonZoomToFeatures_clicked );
connect( mPbnClose, &QPushButton::clicked, this, &QgsExpressionSelectionDialog::mPbnClose_clicked );

setWindowTitle( QStringLiteral( "Select by Expression - %1" ).arg( layer->name() ) );
setWindowTitle( QStringLiteral( "%1 - Select by Expression" ).arg( layer->name() ) );

mActionSelect->setIcon( QgsApplication::getThemeIcon( QStringLiteral( "/mIconExpressionSelect.svg" ) ) );
mActionAddToSelection->setIcon( QgsApplication::getThemeIcon( QStringLiteral( "/mIconSelectAdd.svg" ) ) );
Expand Down

0 comments on commit c952f59

Please sign in to comment.