Skip to content

Commit

Permalink
Place project properties action in File menu correctly (Gnome/Mac)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@15685 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed Apr 9, 2011
1 parent cd5ab2b commit 0ebfb4b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/qgisapp.cpp
Expand Up @@ -1002,8 +1002,9 @@ void QgisApp::createMenus()

if ( layout == QDialogButtonBox::GnomeLayout || layout == QDialogButtonBox::MacLayout )
{
mFileMenu->addAction( mActionProjectProperties );
mFileMenu->addSeparator();
QAction* before = mActionNewPrintComposer;
mFileMenu->insertAction( before, mActionProjectProperties );
mFileMenu->insertSeparator( before );
}

// Edit Menu
Expand Down

0 comments on commit 0ebfb4b

Please sign in to comment.