Skip to content
Permalink
Browse files
Fix string capitalization
  • Loading branch information
nyalldawson committed Feb 26, 2018
1 parent 44896c3 commit e1a344f
Showing 1 changed file with 2 additions and 2 deletions.
@@ -2372,13 +2372,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 );
}

0 comments on commit e1a344f

Please sign in to comment.