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 182bead commit ed29797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/gps/qgsgpsinformationwidget.cpp
Expand Up @@ -939,7 +939,7 @@ void QgsGpsInformationWidget::displayGPSInformation( const QgsGpsInformation &in
if ( std::isfinite( info.hacc ) )
{
mTxtHacc->setEnabled( true );
mTxtHacc->setText( QString::number( info.hacc, 'f', 2 ) + "m" );
mTxtHacc->setText( tr( "%1 m" ), QLocale().toString( info.hacc, 'f', 2 ) ) );
}
else
{
Expand Down

0 comments on commit ed29797

Please sign in to comment.