aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/resize.c
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-01-15 02:21:46 -0500
committerLibravatar emersion <contact@emersion.fr>2019-01-15 09:05:27 +0100
commit3087942c35ad8982d1cf93313fc1834ab439293f (patch)
tree1d1dbbd5aec4afb0eb25214069724ed1d527c968 /sway/commands/resize.c
parentMerge pull request #3422 from RyanDwyer/resize-immediate-siblings (diff)
downloadsway-3087942c35ad8982d1cf93313fc1834ab439293f.tar.gz
sway-3087942c35ad8982d1cf93313fc1834ab439293f.tar.zst
sway-3087942c35ad8982d1cf93313fc1834ab439293f.zip
Handle hidden scratchpad containers in commands
This fixes the handling of hidden scratchpad containers for some commands. For the most part, this just prevents running the commands on hidden scratchpad containers, but there are some commands that have some special handling for them.
Diffstat (limited to 'sway/commands/resize.c')
-rw-r--r--sway/commands/resize.c5
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) {
589 if (!current) { 589 if (!current) {
590 return cmd_results_new(CMD_INVALID, "Cannot resize nothing"); 590 return cmd_results_new(CMD_INVALID, "Cannot resize nothing");
591 } 591 }
592 if (current->scratchpad && !current->workspace) {
593 return cmd_results_new(CMD_FAILURE,
594 "Cannot resize a hidden scratchpad container");
595 }
596
592 597
593 struct cmd_results *error; 598 struct cmd_results *error;
594 if ((error = checkarg(argc, "resize", EXPECTED_AT_LEAST, 2))) { 599 if ((error = checkarg(argc, "resize", EXPECTED_AT_LEAST, 2))) {