mirror of
https://github.com/swaywm/sway.git
synced 2024-11-26 01:41:30 +00:00
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:
parent
0c23b0ec33
commit
9e15e2fd4f
|
@ -1407,9 +1407,6 @@ list_t *container_get_siblings(struct sway_container *container) {
|
||||||
if (container->pending.parent) {
|
if (container->pending.parent) {
|
||||||
return container->pending.parent->pending.children;
|
return container->pending.parent->pending.children;
|
||||||
}
|
}
|
||||||
if (container_is_scratchpad_hidden(container)) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
if (!container->pending.workspace) {
|
if (!container->pending.workspace) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue