Allow moving containers when workspace itself is focused

This commit is contained in:
Ryan Dwyer 2018-08-02 20:59:44 +10:00
parent d6095588a1
commit d64c8df7ce
1 changed files with 1 additions and 2 deletions

View File

@ -59,8 +59,7 @@ static struct cmd_results *cmd_move_container(struct sway_container *current,
&& strcasecmp(argv[2], "workspace") == 0) {
// move container to workspace x
if (current->type == C_WORKSPACE) {
// TODO: Wrap children in a container and move that
return cmd_results_new(CMD_FAILURE, "move", "Unimplemented");
current = container_wrap_children(current);
} else if (current->type != C_CONTAINER && current->type != C_VIEW) {
return cmd_results_new(CMD_FAILURE, "move",
"Can only move containers and views.");