Commit e70b4b0f authored by Don Gagne's avatar Don Gagne Committed by Lorenz Meier

Fix bool type value strings

parent c7a171eb
......@@ -310,6 +310,9 @@ QString Fact::_variantToString(const QVariant& variant, int decimalPlaces) const
}
}
break;
case FactMetaData::valueTypeBool:
valueString = variant.toBool() ? tr("true") : tr("false");
break;
case FactMetaData::valueTypeElapsedTimeInSeconds:
{
double dValue = variant.toDouble();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment