sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit e3e99d961dc445258c08ec47b22ec83af38197f6
parent 3173a4f353f990e96a49e5a24f0d8cf57b21176c
Author: Simon Ser <contact@emersion.fr>
Date:   Tue, 20 Apr 2021 17:29:16 +0200

Avoid creating zero-sized textures for marks

Same as 6327f1b36196 ("Avoid creating zero-sized textures for titlebars")
but for marks.

Diffstat:
Msway/tree/container.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/sway/tree/container.c b/sway/tree/container.c @@ -1623,6 +1623,10 @@ static void update_marks_texture(struct sway_container *con, "%s", buffer); cairo_destroy(c); + if (width == 0 || height == 0) { + return; + } + cairo_surface_t *surface = cairo_image_surface_create( CAIRO_FORMAT_ARGB32, width, height); cairo_t *cairo = cairo_create(surface);