fix bug in factor for Pa in units system

This commit is contained in:
wmayer
2016-08-05 13:57:27 +02:00
parent 1eca045744
commit 7979ec275b
2 changed files with 2 additions and 2 deletions

View File

@@ -152,7 +152,7 @@ QString UnitsSchemaInternal::schemaTranslate(const Quantity &quant, double &fact
}
else { // bigger -> scientific notation
unitString = QString::fromLatin1("Pa");
factor = 1.0;
factor = 0.001;
}
}
else {