diff options
Diffstat (limited to 'sway/commands/split.c')
| -rw-r--r-- | sway/commands/split.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/commands/split.c b/sway/commands/split.c index e9670722..8702f39e 100644 --- a/sway/commands/split.c +++ b/sway/commands/split.c @@ -13,7 +13,8 @@ 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(con) && +				con->fullscreen_mode != FULLSCREEN_GLOBAL) {  			return cmd_results_new(CMD_FAILURE,  					"Cannot split a hidden scratchpad container");  		}  | 
