diff options
author | Daniel Eklöf <daniel@ekloef.se> | 2020-11-17 18:45:37 +0100 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2020-11-17 18:45:52 +0100 |
commit | 689082a9b13dba578c0abc28bbb14fd0852be363 (patch) | |
tree | d97a4cb9b3ff406253efe6726cdda275b1949093 /main.c | |
parent | 1d7c35ff5488d936fcf989698749679ae2919f6a (diff) | |
download | wbg-689082a9b13dba578c0abc28bbb14fd0852be363.tar.gz |
main: re-render when output’s scale factor changes
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -58,6 +58,7 @@ struct output { struct wl_surface *surf; struct zwlr_layer_surface_v1 *layer; + bool configured; }; static tll(struct output) outputs; @@ -119,6 +120,7 @@ layer_surface_configure(void *data, struct zwlr_layer_surface_v1 *surface, struct output *output = data; output->render_width = w; output->render_height = h; + output->configured = true; zwlr_layer_surface_v1_ack_configure(surface, serial); render(output); } @@ -193,6 +195,8 @@ output_scale(void *data, struct wl_output *wl_output, int32_t factor) { struct output *output = data; output->scale = factor; + if (output->configured) + render(output); } static const struct wl_output_listener output_listener = { |