aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/move.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/move.c')
-rw-r--r--sway/commands/move.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sway/commands/move.c b/sway/commands/move.c
index b593138a..4306aac8 100644
--- a/sway/commands/move.c
+++ b/sway/commands/move.c
@@ -854,11 +854,11 @@ static struct cmd_results *cmd_move_to_scratchpad(void) {
854 } 854 }
855 } 855 }
856 856
857 if (con->scratchpad) { 857 if (!con->scratchpad) {
858 return cmd_results_new(CMD_INVALID, 858 root_scratchpad_add_container(con);
859 "Container is already in the scratchpad"); 859 } else if (con->workspace) {
860 root_scratchpad_hide(con);
860 } 861 }
861 root_scratchpad_add_container(con);
862 return cmd_results_new(CMD_SUCCESS, NULL); 862 return cmd_results_new(CMD_SUCCESS, NULL);
863} 863}
864 864