core: update groups on movewindow (#9183)
This commit is contained in:
parent
6bd6c5512e
commit
3b207d29bd
2 changed files with 18 additions and 0 deletions
|
|
@ -847,6 +847,15 @@ void CHyprDwindleLayout::moveWindowTo(PHLWINDOW pWindow, const std::string& dir,
|
|||
pWindow->m_pMonitor = PMONITORFOCAL;
|
||||
}
|
||||
|
||||
pWindow->updateGroupOutputs();
|
||||
if (!pWindow->m_sGroupData.pNextWindow.expired()) {
|
||||
PHLWINDOW next = pWindow->m_sGroupData.pNextWindow.lock();
|
||||
while (next != pWindow) {
|
||||
next->updateToplevel();
|
||||
next = next->m_sGroupData.pNextWindow.lock();
|
||||
}
|
||||
}
|
||||
|
||||
onWindowCreatedTiling(pWindow);
|
||||
|
||||
m_vOverrideFocalPoint.reset();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue