mirror of
https://github.com/tnodir/fort
synced 2024-11-15 03:56:18 +00:00
UI: RuleTextParser::pushListNode: Use isNot
This commit is contained in:
parent
8b8f414100
commit
20593ef75e
@ -180,7 +180,7 @@ int RuleTextParser::pushListNode(int listType)
|
||||
const int listIndex = m_ruleExprArray.size();
|
||||
|
||||
RuleExpr ruleExpr;
|
||||
ruleExpr.flags = FORT_RULE_EXPR_FLAG_LIST;
|
||||
ruleExpr.flags = FORT_RULE_EXPR_FLAG_LIST | (m_isNot ? FORT_RULE_EXPR_FLAG_NOT : 0);
|
||||
ruleExpr.type = listType;
|
||||
|
||||
m_ruleExprArray.append(ruleExpr);
|
||||
|
Loading…
Reference in New Issue
Block a user