aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/desktop/output.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index f2bc4a67..53730073 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -964,6 +964,11 @@ static void handle_commit(struct wl_listener *listener, void *data) {
964 wlr_damage_ring_set_bounds(&output->damage_ring, width, height); 964 wlr_damage_ring_set_bounds(&output->damage_ring, width, height);
965 wlr_output_schedule_frame(output->wlr_output); 965 wlr_output_schedule_frame(output->wlr_output);
966 } 966 }
967
968 // Next time the output is enabled, try to re-apply the gamma LUT
969 if ((event->committed & WLR_OUTPUT_STATE_ENABLED) && !output->wlr_output->enabled) {
970 output->gamma_lut_changed = true;
971 }
967} 972}
968 973
969static void handle_present(struct wl_listener *listener, void *data) { 974static void handle_present(struct wl_listener *listener, void *data) {