Skip to content

Commit bfb4556

Browse files
committedJul 3, 2017
Fix initial dialog title
1 parent 4f21afa commit bfb4556

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/layout/qgslayoutdesignerdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ QgsLayoutDesignerDialog::QgsLayoutDesignerDialog( QWidget *parent, Qt::WindowFla
4444
int size = settings.value( QStringLiteral( "IconSize" ), QGIS_ICON_SIZE ).toInt();
4545
setIconSize( QSize( size, size ) );
4646
setStyleSheet( QgisApp::instance()->styleSheet() );
47-
setWindowTitle( tr( "QGIS Layout Designer" ) );
4847

4948
setupUi( this );
49+
setWindowTitle( tr( "QGIS Layout Designer" ) );
5050

5151
setAttribute( Qt::WA_DeleteOnClose );
5252
#if QT_VERSION >= 0x050600

0 commit comments

Comments
 (0)
Please sign in to comment.