mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-23 12:49:50 +01:00
compositor: fix monitor arrangement with mixed auto directions
fixes #8518
This commit is contained in:
parent
35e134e570
commit
8237627f3a
1 changed files with 29 additions and 31 deletions
|
@ -2771,6 +2771,12 @@ void CCompositor::arrangeMonitors() {
|
|||
int maxYOffsetUp = 0;
|
||||
int maxYOffsetDown = 0;
|
||||
|
||||
auto recalcMaxOffsets = [&]() {
|
||||
maxXOffsetRight = 0;
|
||||
maxXOffsetLeft = 0;
|
||||
maxYOffsetUp = 0;
|
||||
maxYOffsetDown = 0;
|
||||
|
||||
// Finds the max and min values of explicitely placed monitors.
|
||||
for (auto const& m : arranged) {
|
||||
if (m->vecPosition.x + m->vecSize.x > maxXOffsetRight)
|
||||
|
@ -2782,34 +2788,26 @@ void CCompositor::arrangeMonitors() {
|
|||
if (m->vecPosition.y < maxYOffsetUp)
|
||||
maxYOffsetUp = m->vecPosition.y;
|
||||
}
|
||||
};
|
||||
|
||||
// Iterates through all non-explicitly placed monitors.
|
||||
for (auto const& m : toArrange) {
|
||||
recalcMaxOffsets();
|
||||
|
||||
// Moves the monitor to their appropriate position on the x/y axis and
|
||||
// increments/decrements the corresponding max offset.
|
||||
Vector2D newPosition = {0, 0};
|
||||
switch (m->activeMonitorRule.autoDir) {
|
||||
case eAutoDirs::DIR_AUTO_UP:
|
||||
newPosition.y = maxYOffsetUp - m->vecSize.y;
|
||||
maxYOffsetUp = newPosition.y;
|
||||
break;
|
||||
case eAutoDirs::DIR_AUTO_DOWN:
|
||||
newPosition.y = maxYOffsetDown;
|
||||
maxYOffsetDown += m->vecSize.y;
|
||||
break;
|
||||
case eAutoDirs::DIR_AUTO_LEFT:
|
||||
newPosition.x = maxXOffsetLeft - m->vecSize.x;
|
||||
maxXOffsetLeft = newPosition.x;
|
||||
break;
|
||||
case eAutoDirs::DIR_AUTO_UP: newPosition.y = maxYOffsetUp - m->vecSize.y; break;
|
||||
case eAutoDirs::DIR_AUTO_DOWN: newPosition.y = maxYOffsetDown; break;
|
||||
case eAutoDirs::DIR_AUTO_LEFT: newPosition.x = maxXOffsetLeft - m->vecSize.x; break;
|
||||
case eAutoDirs::DIR_AUTO_RIGHT:
|
||||
case eAutoDirs::DIR_AUTO_NONE:
|
||||
newPosition.x = maxXOffsetRight;
|
||||
maxXOffsetRight += m->vecSize.x;
|
||||
break;
|
||||
case eAutoDirs::DIR_AUTO_NONE: newPosition.x = maxXOffsetRight; break;
|
||||
default: UNREACHABLE();
|
||||
}
|
||||
Debug::log(LOG, "arrangeMonitors: {} auto {:j}", m->szName, m->vecPosition);
|
||||
m->moveTo(newPosition);
|
||||
arranged.emplace_back(m);
|
||||
}
|
||||
|
||||
// reset maxXOffsetRight (reuse)
|
||||
|
|
Loading…
Reference in a new issue