diff options
author | vaxerski <[email protected]> | 2023-03-17 23:36:36 +0000 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-03-17 23:36:36 +0000 |
commit | e98ee49aee4a73b757e53a6d190292c17e50f784 (patch) | |
tree | f583f95b71fffcb7b080ef6c888fdcb9a24156c1 | |
parent | d797d9905d8963bac9d2b4903f94d65e5ea4ed82 (diff) | |
download | Hyprland-e98ee49aee4a73b757e53a6d190292c17e50f784.tar.gz Hyprland-e98ee49aee4a73b757e53a6d190292c17e50f784.zip |
LS: fix support for legacy blurls
-rw-r--r-- | src/config/ConfigManager.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index 9d17cfbe..3c75dc85 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -1664,6 +1664,9 @@ std::vector<SLayerRule> CConfigManager::getMatchingRules(SLayerSurface* pLS) { returns.push_back(lr); } + if (pLS->layerSurface->_namespace && shouldBlurLS(pLS->layerSurface->_namespace)) + returns.push_back({pLS->layerSurface->_namespace, "blur"}); + return returns; } |