fix master window finding on closed

This commit is contained in:
vaxerski 2022-11-13 14:31:12 +00:00
parent 1e5cab1ee7
commit 884fc4f89c
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ void CHyprMasterLayout::onWindowRemovedTiling(CWindow* pWindow) {
if (PNODE->isMaster && MASTERSLEFT < 2) {
// find new one
for (auto& nd : m_lMasterNodesData) {
if (!nd.isMaster) {
if (!nd.isMaster && nd.workspaceID == PNODE->workspaceID) {
nd.isMaster = true;
break;
}