From 65b1a6964c81efd84832c80ec9fc0273c8975225 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 9 Jun 2023 11:27:41 +0200 Subject: [PATCH] desktop/output: fix damage bitfield in wlr_output_state --- sway/desktop/output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/desktop/output.c b/sway/desktop/output.c index 9934576c0..2bd8d6da7 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -597,7 +597,7 @@ static int output_repaint_timer_handler(void *data) { } } - pending.committed |= WLR_OUTPUT_STATE_BUFFER; + pending.committed |= WLR_OUTPUT_STATE_DAMAGE; get_frame_damage(output, &pending.damage); if (fullscreen_con && fullscreen_con->view && !debug.noscanout) {