compositor: fix skipping iterators in arrangeMonitors

This commit is contained in:
Vaxry 2023-08-14 19:27:33 +02:00
parent b9a783229b
commit 7c4daee29a

View file

@ -2493,7 +2493,7 @@ void CCompositor::arrangeMonitors() {
for (auto& m : m_vMonitors) for (auto& m : m_vMonitors)
toArrange.push_back(m.get()); toArrange.push_back(m.get());
for (auto it = toArrange.begin(); it != toArrange.end(); ++it) { for (auto it = toArrange.begin(); it != toArrange.end();) {
auto m = *it; auto m = *it;
if (m->activeMonitorRule.offset.x >= 0 && m->activeMonitorRule.offset.y >= 0) { if (m->activeMonitorRule.offset.x >= 0 && m->activeMonitorRule.offset.y >= 0) {
@ -2504,7 +2504,11 @@ void CCompositor::arrangeMonitors() {
if (it == toArrange.end()) if (it == toArrange.end())
break; break;
continue;
} }
++it;
} }
// auto left // auto left