summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-02-24 15:15:22 -0500
committerFurkan Sahin <furkan-dev@proton.me>2021-02-24 15:15:22 -0500
commit3569c53cc9b93bf811087d69f3bef5025e84e850 (patch)
tree18d23151d020320bf0a9252f0ee77593b23f6ee5 /include
parentdf061ce2aac7c8f5b29d9e76d9effc9b44652a5b (diff)
render: handle containers without output when rendering titles
In 43977eb92c4c5f1db0c4d9abe418535053cf039a, it was believed that if the container is being rendered, it must have an output. This turned out not to be the case. When rendering a container, all its children are rendered, even if the children is positioned off screen and thus not having any output. This is the cause of the crash in #6061. This commit introduces a null-check, which fixes #6061.
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/container.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 5c368df2..2c973f71 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -285,6 +285,7 @@ bool container_is_fullscreen_or_child(struct sway_container *container);
/**
* Return the output which will be used for scale purposes.
* This is the most recently entered output.
+ * If the container is not on any output, return NULL.
*/
struct sway_output *container_get_effective_output(struct sway_container *con);