Issue #2862 - Fix a few nested selectors

This commit is contained in:
Basilisk-Dev 2026-03-11 22:49:25 -04:00 committed by wuggy
commit f2560c57b6
2 changed files with 134 additions and 145 deletions

View file

@ -683,7 +683,7 @@ private:
if (c == '{') {
return true;
}
if (c == ':' || c == ';' || c == '}') {
if (c == ';' || c == '}') {
return false;
}
}