Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Capitalization
  • Loading branch information
nyalldawson committed Jul 16, 2018
1 parent a5c399e commit d183f5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgsadvanceddigitizingdockwidget.cpp
Expand Up @@ -115,9 +115,9 @@ QgsAdvancedDigitizingDockWidget::QgsAdvancedDigitizingDockWidget( QgsMapCanvas *
for ( QList<double>::const_iterator it = anglesDouble.constBegin(); it != anglesDouble.constEnd(); ++it )
{
if ( *it == 0 )
menuText = tr( "Do not snap to common angles" );
menuText = tr( "Do Not Snap to Common Angles" );
else
menuText = QString( tr( "%1, %2, %3, %4° " ) ).arg( *it, 0, 'f', 1 ).arg( *it * 2, 0, 'f', 1 ).arg( *it * 3, 0, 'f', 1 ).arg( *it * 4, 0, 'f', 1 );
menuText = QString( tr( "%1, %2, %3, %4°…" ) ).arg( *it, 0, 'f', 1 ).arg( *it * 2, 0, 'f', 1 ).arg( *it * 3, 0, 'f', 1 ).arg( *it * 4, 0, 'f', 1 );
commonAngles << QPair<double, QString>( *it, menuText );
}
for ( QList< QPair<double, QString > >::const_iterator it = commonAngles.constBegin(); it != commonAngles.constEnd(); ++it )
Expand Down

0 comments on commit d183f5f

Please sign in to comment.