mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-23 08:09:49 +01:00
compositor: move group members properly in moveWindowToWorkspaceSafe
This commit is contained in:
parent
83ad6b9af8
commit
cbe9bf0e69
1 changed files with 9 additions and 0 deletions
|
@ -2387,6 +2387,15 @@ void CCompositor::moveWindowToWorkspaceSafe(CWindow* pWindow, CWorkspace* pWorks
|
||||||
pWindow->m_vRealPosition = POSTOMON + PWORKSPACEMONITOR->vecPosition;
|
pWindow->m_vRealPosition = POSTOMON + PWORKSPACEMONITOR->vecPosition;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (pWindow->m_sGroupData.pNextWindow) {
|
||||||
|
CWindow* next = pWindow->m_sGroupData.pNextWindow;
|
||||||
|
while (next != pWindow) {
|
||||||
|
next->moveToWorkspace(pWorkspace->m_iID);
|
||||||
|
next->updateToplevel();
|
||||||
|
next = next->m_sGroupData.pNextWindow;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (FULLSCREEN)
|
if (FULLSCREEN)
|
||||||
setWindowFullscreen(pWindow, true, FULLSCREENMODE);
|
setWindowFullscreen(pWindow, true, FULLSCREENMODE);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue