LS: fix support for legacy blurls

This commit is contained in:
vaxerski 2023-03-17 23:36:36 +00:00
parent d797d9905d
commit e98ee49aee

View file

@ -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;
}