diff options
author | Simon Ser <contact@emersion.fr> | 2023-06-09 11:27:41 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-06-09 11:41:41 +0200 |
commit | 65b1a6964c81efd84832c80ec9fc0273c8975225 (patch) | |
tree | a91587967231113d8a1bec300abba28a6798d92f /sway | |
parent | f3b8c9feeed9f79fc8f06e7f1dcfaadde522ce90 (diff) |
desktop/output: fix damage bitfield in wlr_output_state
Diffstat (limited to 'sway')
-rw-r--r-- | sway/desktop/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c index 9934576c..2bd8d6da 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) { |