mirror of
https://github.com/hyprwm/Hyprland
synced 2026-05-02 03:17:58 +02:00
desktop/layerRuleApplicator: fix an epic c+p fail
ref https://github.com/hyprwm/Hyprland/discussions/12779
This commit is contained in:
parent
27bee5bf99
commit
3254fa7b49
1 changed files with 2 additions and 2 deletions
|
|
@ -73,8 +73,8 @@ void CLayerRuleApplicator::applyDynamicRule(const SP<CLayerRule>& rule) {
|
|||
}
|
||||
case LAYER_RULE_EFFECT_ORDER: {
|
||||
try {
|
||||
m_noScreenShare.first.set(std::stoi(effect), Types::PRIORITY_WINDOW_RULE);
|
||||
m_noScreenShare.second |= rule->getPropertiesMask();
|
||||
m_order.first.set(std::stoi(effect), Types::PRIORITY_WINDOW_RULE);
|
||||
m_order.second |= rule->getPropertiesMask();
|
||||
} catch (...) { Log::logger->log(Log::ERR, "CLayerRuleApplicator::applyDynamicRule: invalid order {}", effect); }
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue