mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-06 07:01:57 -07:00
erase instead of overwriting monitor rules
This commit is contained in:
@@ -433,13 +433,7 @@ void CConfigManager::handleMonitor(const std::string& command, const std::string
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// overwrite if exists
|
m_dMonitorRules.erase(std::remove_if(m_dMonitorRules.begin(), m_dMonitorRules.end(), [&](const auto& other) { return other.name == newrule.name; }));
|
||||||
for (auto& r : m_dMonitorRules) {
|
|
||||||
if (r.name == newrule.name) {
|
|
||||||
r = newrule;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
m_dMonitorRules.push_back(newrule);
|
m_dMonitorRules.push_back(newrule);
|
||||||
|
|
||||||
@@ -474,13 +468,7 @@ void CConfigManager::handleMonitor(const std::string& command, const std::string
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// overwrite if exists
|
m_dMonitorRules.erase(std::remove_if(m_dMonitorRules.begin(), m_dMonitorRules.end(), [&](const auto& other) { return other.name == newrule.name; }));
|
||||||
for (auto& r : m_dMonitorRules) {
|
|
||||||
if (r.name == newrule.name) {
|
|
||||||
r = newrule;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
m_dMonitorRules.push_back(newrule);
|
m_dMonitorRules.push_back(newrule);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user