summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2020-01-14 17:52:44 -0700
committerFurkan Sahin <furkan-dev@proton.me>2020-01-14 17:52:44 -0700
commit1e5fb581ae76ac0ee4c77f60e90a5c96af9a93f3 (patch)
tree37b4d208bd686c9b76b50823a0f1d74607749be8
parent6665bd37f0469e3be25a120374e9b0f951a175f6 (diff)
cmd_split: Refuse to split scratchpad hidden split containers
-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) {
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");