aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/split.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/split.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/split.c')
-rw-r--r--sway/commands/split.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/commands/split.c b/sway/commands/split.c
index ed370d26..06b7df5e 100644
--- a/sway/commands/split.c
+++ b/sway/commands/split.c
@@ -13,6 +13,10 @@ static struct cmd_results *do_split(int layout) {
13 struct sway_container *con = config->handler_context.container; 13 struct sway_container *con = config->handler_context.container;
14 struct sway_workspace *ws = config->handler_context.workspace; 14 struct sway_workspace *ws = config->handler_context.workspace;
15 if (con) { 15 if (con) {
16 if (con->scratchpad && !con->workspace) {
17 return cmd_results_new(CMD_FAILURE,
18 "Cannot split a hidden scratchpad container");
19 }
16 container_split(con, layout); 20 container_split(con, layout);
17 } else { 21 } else {
18 workspace_split(ws, layout); 22 workspace_split(ws, layout);