Skip to content

Commit

Permalink
Update src/app/gps/qgsgpsinformationwidget.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 15, 2020
1 parent 066b117 commit 19d5ec7
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( tr( "%1 m" ), QLocale().toString( info.vacc, 'f', 2 ) ) );
mTxtVacc->setText( tr( "%1 m" ).arg( QLocale().toString( info.vacc, 'f', 2 ) ) );
}
else
{
Expand Down

0 comments on commit 19d5ec7

Please sign in to comment.