commit 65b1a6964c81efd84832c80ec9fc0273c8975225
parent f3b8c9feeed9f79fc8f06e7f1dcfaadde522ce90
Author: Simon Ser <contact@emersion.fr>
Date: Fri, 9 Jun 2023 11:27:41 +0200
desktop/output: fix damage bitfield in wlr_output_state
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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) {