aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/split.c
diff options
context:
space:
mode:
authorLibravatar Ronan Pigott <rpigott@berkeley.edu>2020-01-14 17:52:44 -0700
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2020-01-16 21:48:25 -0500
commit5501d14a2e7147b533df12b21368639cf01a7c9c (patch)
tree5e26240ff8b94f821d23275266fbb5c8fb135a32 /sway/commands/split.c
parentcmd_move: Fix crash when moving to scratchpad hidden split containers (diff)
downloadsway-5501d14a2e7147b533df12b21368639cf01a7c9c.tar.gz
sway-5501d14a2e7147b533df12b21368639cf01a7c9c.tar.zst
sway-5501d14a2e7147b533df12b21368639cf01a7c9c.zip
cmd_split: Refuse to split scratchpad hidden split containers
Diffstat (limited to 'sway/commands/split.c')
-rw-r--r--sway/commands/split.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/split.c b/sway/commands/split.c
index d364cc95..ec56c2f0 100644
--- a/sway/commands/split.c
+++ b/sway/commands/split.c
@@ -13,7 +13,7 @@ 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 (container_is_scratchpad_hidden(con) && 16 if (container_is_scratchpad_hidden_or_child(con) &&
17 con->fullscreen_mode != FULLSCREEN_GLOBAL) { 17 con->fullscreen_mode != FULLSCREEN_GLOBAL) {
18 return cmd_results_new(CMD_FAILURE, 18 return cmd_results_new(CMD_FAILURE,
19 "Cannot split a hidden scratchpad container"); 19 "Cannot split a hidden scratchpad container");