Skip to content

Commit

Permalink
Fix string capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 26, 2018
1 parent 44896c3 commit e1a344f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgisapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
}

Expand Down

0 comments on commit e1a344f

Please sign in to comment.