mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 03:17:46 +03:00
render: handle containers without output when rendering titles
In e0a94bee8d
, 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.
This commit is contained in:
parent
bb41b7b814
commit
e01a3c85f6
2 changed files with 6 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue