mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 21:46:00 +01:00
dwindle: fix moving windows on special
This commit is contained in:
parent
e6651334f2
commit
2536630049
1 changed files with 4 additions and 2 deletions
|
@ -912,8 +912,10 @@ void CHyprDwindleLayout::moveWindowTo(CWindow* pWindow, const std::string& dir)
|
||||||
|
|
||||||
const auto PMONITORFOCAL = g_pCompositor->getMonitorFromVector(focalPoint);
|
const auto PMONITORFOCAL = g_pCompositor->getMonitorFromVector(focalPoint);
|
||||||
|
|
||||||
pWindow->moveToWorkspace(PMONITORFOCAL->activeWorkspace);
|
if (PMONITORFOCAL->ID != pWindow->m_iMonitorID) {
|
||||||
pWindow->m_iMonitorID = PMONITORFOCAL->ID;
|
pWindow->moveToWorkspace(PMONITORFOCAL->activeWorkspace);
|
||||||
|
pWindow->m_iMonitorID = PMONITORFOCAL->ID;
|
||||||
|
}
|
||||||
|
|
||||||
onWindowCreatedTiling(pWindow);
|
onWindowCreatedTiling(pWindow);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue