diff options
Diffstat (limited to 'sway/commands/kill.c')
-rw-r--r-- | sway/commands/kill.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/sway/commands/kill.c b/sway/commands/kill.c index 46d6e98e..f3fa52f1 100644 --- a/sway/commands/kill.c +++ b/sway/commands/kill.c @@ -10,22 +10,7 @@ struct cmd_results *cmd_kill(int argc, char **argv) { struct sway_container *con = config->handler_context.current_container; - switch (con->type) { - case C_ROOT: - case C_OUTPUT: - case C_WORKSPACE: - case C_TYPES: - return cmd_results_new(CMD_INVALID, NULL, - "Can only kill views and containers with this command"); - break; - case C_CONTAINER: - con = container_destroy(con); - arrange_windows(con, -1, -1); - break; - case C_VIEW: - view_close(con->sway_view); - break; - } + container_close(con); return cmd_results_new(CMD_SUCCESS, NULL, NULL); } |