aboutsummaryrefslogtreecommitdiff
path: root/sway/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index da33c5de..2e28e69d 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -235,6 +235,10 @@ static bool _do_split(struct sway_config *config, int argc, char **argv, int lay
return false;
}
swayc_t *focused = get_focused_container(&root_container);
+ if (focused->type == C_WORKSPACE) {
+ sway_log(L_DEBUG, "Dont split workspaces");
+ return true;
+ }
swayc_t *parent = focused->parent;
sway_log(L_DEBUG, "Splitting %p vertically with %p", parent, focused);
int index = remove_container_from_parent(parent, focused);