aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/desktop
diff options
context:
space:
mode:
authorVaxry <[email protected]>2024-12-17 01:57:35 +0000
committerVaxry <[email protected]>2024-12-17 16:07:47 +0000
commit428862016c6f392a90b7cd7925a30c8d2b93f1b0 (patch)
tree9d141176aa63480703689021311b7d1b8fe8072d /src/desktop
parent788ae588979c2a1ff8a660f16e3c502ef5796755 (diff)
downloadHyprland-428862016c6f392a90b7cd7925a30c8d2b93f1b0.tar.gz
Hyprland-428862016c6f392a90b7cd7925a30c8d2b93f1b0.zip
windowrules: fixup duplicate rule enum tags
fixes #8746
Diffstat (limited to 'src/desktop')
-rw-r--r--src/desktop/WindowRule.cpp10
-rw-r--r--src/desktop/WindowRule.hpp5
2 files changed, 0 insertions, 15 deletions
diff --git a/src/desktop/WindowRule.cpp b/src/desktop/WindowRule.cpp
index d721c4bd..4f2d949e 100644
--- a/src/desktop/WindowRule.cpp
+++ b/src/desktop/WindowRule.cpp
@@ -41,8 +41,6 @@ CWindowRule::CWindowRule(const std::string& rule, const std::string& value, bool
ruleType = RULE_ANIMATION;
else if (rule.starts_with("bordercolor"))
ruleType = RULE_BORDERCOLOR;
- else if (rule.starts_with("bordersize"))
- ruleType = RULE_BORDERSIZE;
else if (rule.starts_with("center"))
ruleType = RULE_CENTER;
else if (rule.starts_with("fullscreenstate"))
@@ -65,12 +63,6 @@ CWindowRule::CWindowRule(const std::string& rule, const std::string& value, bool
ruleType = RULE_PLUGIN;
else if (rule.starts_with("pseudo"))
ruleType = RULE_PSEUDO;
- else if (rule.starts_with("rounding"))
- ruleType = RULE_ROUNDING;
- else if (rule.starts_with("scrollmouse"))
- ruleType = RULE_SCROLLMOUSE;
- else if (rule.starts_with("scrolltouchpad"))
- ruleType = RULE_SCROLLTOUCHPAD;
else if (rule.starts_with("size"))
ruleType = RULE_SIZE;
else if (rule.starts_with("suppressevent"))
@@ -79,8 +71,6 @@ CWindowRule::CWindowRule(const std::string& rule, const std::string& value, bool
ruleType = RULE_TAG;
else if (rule.starts_with("workspace"))
ruleType = RULE_WORKSPACE;
- else if (rule.starts_with("xray"))
- ruleType = RULE_XRAY;
else if (rule.starts_with("prop"))
ruleType = RULE_PROP;
else {
diff --git a/src/desktop/WindowRule.hpp b/src/desktop/WindowRule.hpp
index d1034cf6..6faf8b5a 100644
--- a/src/desktop/WindowRule.hpp
+++ b/src/desktop/WindowRule.hpp
@@ -19,7 +19,6 @@ class CWindowRule {
RULE_RENDERUNFOCUSED,
RULE_ANIMATION,
RULE_BORDERCOLOR,
- RULE_BORDERSIZE,
RULE_CENTER,
RULE_FULLSCREENSTATE,
RULE_GROUP,
@@ -31,14 +30,10 @@ class CWindowRule {
RULE_OPACITY,
RULE_PLUGIN,
RULE_PSEUDO,
- RULE_ROUNDING,
- RULE_SCROLLMOUSE,
- RULE_SCROLLTOUCHPAD,
RULE_SIZE,
RULE_SUPPRESSEVENT,
RULE_TAG,
RULE_WORKSPACE,
- RULE_XRAY,
RULE_PROP,
};