aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorDaniel Eklöf <daniel@ekloef.se>2020-11-17 18:45:37 +0100
committerDaniel Eklöf <daniel@ekloef.se>2020-11-17 18:45:52 +0100
commit689082a9b13dba578c0abc28bbb14fd0852be363 (patch)
treed97a4cb9b3ff406253efe6726cdda275b1949093 /main.c
parent1d7c35ff5488d936fcf989698749679ae2919f6a (diff)
downloadwbg-689082a9b13dba578c0abc28bbb14fd0852be363.tar.gz
main: re-render when output’s scale factor changes
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.c b/main.c
index 027f762..11789f7 100644
--- a/main.c
+++ b/main.c
@@ -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 = {