diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-04-20 17:21:05 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-04-20 17:21:05 +0200 |
| commit | 6b2af161ef37087539f0d4ac4fb1017173728f0a (patch) | |
| tree | fb97a1013eaceb17ddfb140b6af4b5ffc76c43ed | |
| parent | 07711d5bc56c96761dd6701c92a8d2371aae729a (diff) | |
Avoid creating zero-sized textures for titlebars
Creating a zero-sized wlr_texture is incorrect.
| -rw-r--r-- | sway/tree/container.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 43fe6944..47772b62 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -531,6 +531,10 @@ static void update_title_texture(struct sway_container *con, cairo_surface_destroy(dummy_surface); 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); |
