diff options
Diffstat (limited to 'sway/commands/resize.c')
-rw-r--r-- | sway/commands/resize.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/commands/resize.c b/sway/commands/resize.c index 6cdeb90c..d840f26c 100644 --- a/sway/commands/resize.c +++ b/sway/commands/resize.c @@ -589,6 +589,11 @@ struct cmd_results *cmd_resize(int argc, char **argv) { if (!current) { return cmd_results_new(CMD_INVALID, "Cannot resize nothing"); } + if (current->scratchpad && !current->workspace) { + return cmd_results_new(CMD_FAILURE, + "Cannot resize a hidden scratchpad container"); + } + struct cmd_results *error; if ((error = checkarg(argc, "resize", EXPECTED_AT_LEAST, 2))) { |