tree/container: drop unnecessary check in container_get_siblings()

The check for container->pending.workspace already covers this.

References: https://github.com/swaywm/sway/pull/7315#issuecomment-1341716204
This commit is contained in:
Simon Ser 2022-12-19 10:30:21 +01:00 committed by Ronan Pigott
parent 0c23b0ec33
commit 9e15e2fd4f

View File

@ -1407,9 +1407,6 @@ list_t *container_get_siblings(struct sway_container *container) {
if (container->pending.parent) {
return container->pending.parent->pending.children;
}
if (container_is_scratchpad_hidden(container)) {
return NULL;
}
if (!container->pending.workspace) {
return NULL;
}