Skip to content

Commit

Permalink
Update src/app/gps/qgsgpsinformationwidget.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Matthias Kuhn <matthias@opengis.ch>
  • Loading branch information
jiargei and m-kuhn committed Aug 14, 2020
1 parent 026dc31 commit 182bead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/gps/qgsgpsinformationwidget.cpp
Expand Up @@ -949,7 +949,7 @@ void QgsGpsInformationWidget::displayGPSInformation( const QgsGpsInformation &in
if ( std::isfinite( info.vacc ) )
{
mTxtVacc->setEnabled( true );
mTxtVacc->setText( QString::number( info.vacc, 'f', 2 ) + "m" );
mTxtVacc->setText( tr( "%1 m" ), QLocale().toString( info.vacc, 'f', 2 ) ) );
}
else
{
Expand Down

0 comments on commit 182bead

Please sign in to comment.