Skip to content

Commit

Permalink
Fix string capitalization
Browse files Browse the repository at this point in the history
(cherry-picked from e1a344)
  • Loading branch information
nyalldawson committed Feb 26, 2018
1 parent 167b608 commit 181d441
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgisapp.cpp
Expand Up @@ -2365,13 +2365,13 @@ void QgisApp::refreshProfileMenu()

mConfigMenu->addSeparator( );

QAction *openProfileFolderAction = mConfigMenu->addAction( tr( "Open active profile folder" ) );
QAction *openProfileFolderAction = mConfigMenu->addAction( tr( "Open Active Profile Folder" ) );
connect( openProfileFolderAction, &QAction::triggered, this, [this]()
{
QDesktopServices::openUrl( QUrl::fromLocalFile( userProfileManager()->userProfile()->folder() ) );
} );

QAction *newProfileAction = mConfigMenu->addAction( tr( "New profile" ) );
QAction *newProfileAction = mConfigMenu->addAction( tr( "New Profile…" ) );
connect( newProfileAction, &QAction::triggered, this, &QgisApp::newProfile );
}

Expand Down

0 comments on commit 181d441

Please sign in to comment.