commit e8fb7f53b81fd3fc5d81f4e0f43d20499940e0fd
parent fa7b686e61dd86f6f26d562362917034de4753dd
Author: Simon Ser <contact@emersion.fr>
Date: Wed, 5 Apr 2023 12:14:14 +0200
Remove duplicate wlr_damage_ring_set_bounds() call
We already do this in handle_commit().
Diffstat:
1 file changed, 0 insertions(+), 5 deletions(-)
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
@@ -884,11 +884,6 @@ static void handle_mode(struct sway_output *output) {
arrange_output(output);
transaction_commit_dirty();
- int width, height;
- wlr_output_transformed_resolution(output->wlr_output, &width, &height);
- wlr_damage_ring_set_bounds(&output->damage_ring, width, height);
- wlr_output_schedule_frame(output->wlr_output);
-
update_output_manager_config(output->server);
}