fixed string filter on boolean columns when testing against the value false

actorid
Marc Zinnschlag 11 years ago
parent a77044cda4
commit a29b8667ef

@ -47,7 +47,7 @@ bool CSMFilter::TextNode::test (const CSMWorld::IdTable& table, int row,
}
else if (data.type()==QVariant::Bool)
{
string = data.toBool() ? "true" : " false";
string = data.toBool() ? "true" : "false";
}
else
return false;

Loading…
Cancel
Save