forked from mirror/openmw-tes3mp
fixed string filter on boolean columns when testing against the value false
This commit is contained in:
parent
a77044cda4
commit
a29b8667ef
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue