Base: Remove extraneous bracket from string representation of kinematic viscosity units in MKS schema

This commit is contained in:
Oliver Oxtoby
2022-05-11 08:09:46 +02:00
parent 1ef0f8001b
commit 9e388ab0a8

View File

@@ -456,7 +456,7 @@ QString UnitsSchemaMKS::schemaTranslate(const Quantity &quant, double &factor, Q
factor = 0.001;
}
else if (unit == Unit::KinematicViscosity) {
unitString = QString::fromLatin1("m^2/s)");
unitString = QString::fromLatin1("m^2/s");
factor = 1e6;
}
else {