dwindle: disallow swaps between workspaces

This commit is contained in:
vaxerski 2022-06-23 20:51:01 +02:00
parent f76b9c4852
commit e4e323a0df
1 changed files with 5 additions and 0 deletions

View File

@ -902,6 +902,11 @@ void CHyprDwindleLayout::switchWindows(CWindow* pWindow, CWindow* pWindow2) {
if (!PNODE2 || !PNODE)
return;
if (PNODE->workspaceID != PNODE2->workspaceID) {
Debug::log(ERR, "Dwindle: Rejecting a swap between workspaces");
return;
}
// we will not delete the nodes, just fix the tree
if (PNODE2->pParent == PNODE->pParent) {
const auto PPARENT = PNODE->pParent;