We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 4a5360c commit 3a5bfdbCopy full SHA for 3a5bfdb
src/app/qgisapp.cpp
@@ -1002,8 +1002,9 @@ void QgisApp::createMenus()
1002
1003
if ( layout == QDialogButtonBox::GnomeLayout || layout == QDialogButtonBox::MacLayout )
1004
{
1005
- mFileMenu->addAction( mActionProjectProperties );
1006
- mFileMenu->addSeparator();
+ QAction* before = mActionNewPrintComposer;
+ mFileMenu->insertAction( before, mActionProjectProperties );
1007
+ mFileMenu->insertSeparator( before );
1008
}
1009
1010
// Edit Menu
0 commit comments