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 ed29797 commit 066b117
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( tr( "%1 m" ), QLocale().toString( info.hacc, 'f', 2 ) ) );
mTxtHacc->setText( tr( "%1 m" ).arg( QLocale().toString( info.hacc, 'f', 2 ) ) );
}
else
{
Expand Down

0 comments on commit 066b117

Please sign in to comment.