From 8fa0ddef1ee0d9c776f467b8f31593533404e138 Mon Sep 17 00:00:00 2001 From: Ronan Pigott Date: Tue, 14 Jan 2020 17:52:44 -0700 Subject: [PATCH] cmd_split: Refuse to split scratchpad hidden split containers --- sway/commands/split.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/commands/split.c b/sway/commands/split.c index 8702f39e6..ee2f407d8 100644 --- a/sway/commands/split.c +++ b/sway/commands/split.c @@ -13,7 +13,7 @@ static struct cmd_results *do_split(int layout) { struct sway_container *con = config->handler_context.container; struct sway_workspace *ws = config->handler_context.workspace; if (con) { - if (container_is_scratchpad_hidden(con) && + if (container_is_scratchpad_hidden_or_child(con) && con->fullscreen_mode != FULLSCREEN_GLOBAL) { return cmd_results_new(CMD_FAILURE, "Cannot split a hidden scratchpad container");