From 6209b9754a9c2e2925a0f306cea1a88d8f8dfe8e Mon Sep 17 00:00:00 2001 From: Matthias Kuhn Date: Tue, 3 Jun 2014 08:48:29 +0200 Subject: [PATCH] Add layer name to select by expression dialog title Fix #10422 --- src/gui/qgsexpressionselectiondialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/qgsexpressionselectiondialog.cpp b/src/gui/qgsexpressionselectiondialog.cpp index 3ba00f92af9..9df6f6ca7f7 100644 --- a/src/gui/qgsexpressionselectiondialog.cpp +++ b/src/gui/qgsexpressionselectiondialog.cpp @@ -25,6 +25,8 @@ QgsExpressionSelectionDialog::QgsExpressionSelectionDialog( QgsVectorLayer* laye { setupUi( this ); + setWindowTitle( QString( "Select by expression - %1" ).arg( layer->name() ) ); + mActionSelect->setIcon( QgsApplication::getThemeIcon( "/mIconExpressionSelect.svg" ) ); mActionAddToSelection->setIcon( QgsApplication::getThemeIcon( "/mIconSelectAdd.svg" ) ); mActionRemoveFromSelection->setIcon( QgsApplication::getThemeIcon( "/mIconSelectRemove.svg" ) );