Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix initial dialog title
  • Loading branch information
nyalldawson committed Jul 3, 2017
1 parent 4f21afa commit bfb4556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/layout/qgslayoutdesignerdialog.cpp
Expand Up @@ -44,9 +44,9 @@ QgsLayoutDesignerDialog::QgsLayoutDesignerDialog( QWidget *parent, Qt::WindowFla
int size = settings.value( QStringLiteral( "IconSize" ), QGIS_ICON_SIZE ).toInt();
setIconSize( QSize( size, size ) );
setStyleSheet( QgisApp::instance()->styleSheet() );
setWindowTitle( tr( "QGIS Layout Designer" ) );

setupUi( this );
setWindowTitle( tr( "QGIS Layout Designer" ) );

setAttribute( Qt::WA_DeleteOnClose );
#if QT_VERSION >= 0x050600
Expand Down

0 comments on commit bfb4556

Please sign in to comment.