Skip to content

Commit bcdf20b

Browse files
committed
Fix incorrect MoveNodeToWorkspaceCommand exit code
#1563 The regression got introduced in 0165497 Apparently, I was drunk
1 parent aa0b25a commit bcdf20b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/AppBundle/command/impl/MoveNodeToWorkspaceCommand.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ func moveWindowToWorkspace(_ window: Window, _ targetWorkspace: Workspace, _ io:
3636
}
3737
let targetContainer: NonLeafTreeNodeObject = window.isFloating ? targetWorkspace : targetWorkspace.rootTilingContainer
3838
window.bind(to: targetContainer, adaptiveWeight: WEIGHT_AUTO, index: index)
39-
return focusFollowsWindow ? window.focusWindow() : false
39+
return focusFollowsWindow ? window.focusWindow() : true
4040
}

0 commit comments

Comments
 (0)