We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b74b9e commit c1decf7Copy full SHA for c1decf7
src/app/qgsmeasuredialog.cpp
@@ -278,7 +278,10 @@ void QgsMeasureDialog::updateUi()
278
editTotal->setToolTip( toolTip );
279
mTable->setToolTip( toolTip );
280
281
- mTable->setHeaderLabels( QStringList( tr( "Segments [%1]" ).arg( QGis::tr( mDisplayUnits ) ) ) );
+ QGis::UnitType newDisplayUnits;
282
+ double dummy = 1.0;
283
+ convertMeasurement( dummy, newDisplayUnits, true );
284
+ mTable->setHeaderLabels( QStringList( tr( "Segments [%1]" ).arg( QGis::tr( newDisplayUnits ) ) ) );
285
286
if ( mMeasureArea )
287
{
0 commit comments