mirror of
https://github.com/hyprwm/hyprlang.git
synced 2024-11-16 18:25:57 +01:00
core: don't populate linesContainingVar on dynamic requests
This commit is contained in:
parent
adbefbf496
commit
16e5c9465f
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ CParseResult CConfig::parseLine(std::string line, bool dynamic) {
|
|||
|
||||
if (RHSIT == std::string::npos && LHSIT == std::string::npos)
|
||||
continue;
|
||||
else
|
||||
else if (!dynamic)
|
||||
var.linesContainingVar.push_back({line, impl->categories, impl->currentSpecialCategory});
|
||||
|
||||
anyMatch = true;
|
||||
|
|
Loading…
Reference in a new issue