From 7c6d165e1eb9045a996551eb9f121b6d1b30adc3 Mon Sep 17 00:00:00 2001 From: vaxerski Date: Tue, 4 Feb 2025 10:29:10 +0000 Subject: [PATCH] meta: fix hyprlang colon handling fixes #80 --- libhyprcursor/meta.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libhyprcursor/meta.cpp b/libhyprcursor/meta.cpp index 06cf7d7..8db0c54 100644 --- a/libhyprcursor/meta.cpp +++ b/libhyprcursor/meta.cpp @@ -130,7 +130,7 @@ static Hyprlang::CParseResult parseOverride(const char* C, const char* V) { CVarList overrides(VALUE, 0, ';'); for (const auto& o : overrides) { - currentMeta->parsedData.overrides.push_back(VALUE); + currentMeta->parsedData.overrides.push_back(o); } return result;