mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Enable unicode regular expressions in ignore phrases too
This commit is contained in:
parent
eae2c2c521
commit
715d208b6d
1 changed files with 2 additions and 1 deletions
|
@ -29,7 +29,8 @@ public:
|
|||
: pattern(_pattern)
|
||||
, _isRegex(isRegex)
|
||||
, regex(_isRegex ? _pattern : "\\b" + QRegularExpression::escape(_pattern) + "\\b",
|
||||
QRegularExpression::CaseInsensitiveOption)
|
||||
QRegularExpression::CaseInsensitiveOption |
|
||||
QRegularExpression::UseUnicodePropertiesOption)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue