mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 21:47:40 -05:00
fix: Pattern filter RValue parsing
This commit is contained in:
@@ -167,11 +167,9 @@ namespace hex::plugin::builtin::ui {
|
||||
else if (c == '[') {
|
||||
result.emplace_back();
|
||||
result.back() += c;
|
||||
} else if (c == ']') {
|
||||
result.back() += c;
|
||||
result.emplace_back();
|
||||
} else
|
||||
} else {
|
||||
result.back() += c;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user