Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
'...' -> '…' (proper ellipsis character instead of three dots)
  • Loading branch information
lbartoletti authored and nyalldawson committed Jul 16, 2018
1 parent 97c937f commit 720866c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsadvanceddigitizingdockwidget.cpp
Expand Up @@ -117,7 +117,7 @@ QgsAdvancedDigitizingDockWidget::QgsAdvancedDigitizingDockWidget( QgsMapCanvas *
if ( *it == 0 )
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 720866c

Please sign in to comment.