diff --git a/src/gui/qgsattributedialog.cpp b/src/gui/qgsattributedialog.cpp index bdc17037d56..b4a983cc2fb 100644 --- a/src/gui/qgsattributedialog.cpp +++ b/src/gui/qgsattributedialog.cpp @@ -144,6 +144,7 @@ bool QgsAttributeDialog::eventFilter( QObject* obj, QEvent* e ) void QgsAttributeDialog::init( QgsVectorLayer* layer, QgsFeature* feature, QgsAttributeEditorContext& context, QWidget* parent ) { mDialog = new QDialog( parent ); + mDialog->setWindowTitle( tr( "Feature Attributes" ) ); mDialog->setLayout( new QGridLayout() ); mDialog->layout()->setMargin( 0 ); mAttributeForm = new QgsAttributeForm( layer, *feature, context, parent );