From 98b40d31c1178228dfc476b26d82e99bae338b5f 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 8c3afae9..16f8cdb6 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) {