Skip to content

Commit 3a5bfdb

Browse files
author
wonder
committedApr 9, 2011
Place project properties action in File menu correctly (Gnome/Mac)
git-svn-id: http://svn.osgeo.org/qgis/trunk@15685 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 4a5360c commit 3a5bfdb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,8 +1002,9 @@ void QgisApp::createMenus()
10021002

10031003
if ( layout == QDialogButtonBox::GnomeLayout || layout == QDialogButtonBox::MacLayout )
10041004
{
1005-
mFileMenu->addAction( mActionProjectProperties );
1006-
mFileMenu->addSeparator();
1005+
QAction* before = mActionNewPrintComposer;
1006+
mFileMenu->insertAction( before, mActionProjectProperties );
1007+
mFileMenu->insertSeparator( before );
10071008
}
10081009

10091010
// Edit Menu

0 commit comments

Comments
 (0)
Please sign in to comment.