mirror of
https://github.com/swaywm/sway.git
synced 2024-11-25 17:31:28 +00:00
split workspace bug
This commit is contained in:
parent
94e81fd64c
commit
57c28f96fd
|
@ -235,6 +235,10 @@ static bool _do_split(struct sway_config *config, int argc, char **argv, int lay
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
swayc_t *focused = get_focused_container(&root_container);
|
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;
|
swayc_t *parent = focused->parent;
|
||||||
sway_log(L_DEBUG, "Splitting %p vertically with %p", parent, focused);
|
sway_log(L_DEBUG, "Splitting %p vertically with %p", parent, focused);
|
||||||
int index = remove_container_from_parent(parent, focused);
|
int index = remove_container_from_parent(parent, focused);
|
||||||
|
|
Loading…
Reference in a new issue