From 59b3c4d06e2941f08ca60e25a223c0e52b83a00e Mon Sep 17 00:00:00 2001 From: athrungithub Date: Mon, 11 Feb 2019 19:10:28 -0300 Subject: [PATCH] Don't remove from scratchpad on move to workspace on move container window to another workspace, not remove from scratchpad. --- sway/commands/move.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sway/commands/move.c b/sway/commands/move.c index 8c3afae97..16f8cdb6f 100644 --- a/sway/commands/move.c +++ b/sway/commands/move.c @@ -516,7 +516,6 @@ static struct cmd_results *cmd_move_container(int argc, char **argv) { // move container if (container->scratchpad) { - root_scratchpad_remove_container(container); root_scratchpad_show(container); } switch (destination->type) {