diff --git a/src/desktop/WindowRule.cpp b/src/desktop/WindowRule.cpp index d721c4bd1c2..4f2d949eaf4 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 d1034cf6ecd..6faf8b5a019 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, };