From 8df120dafdcfbcec4b3f217615cd8df86a77a97c Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Tue, 21 Nov 2023 19:28:06 +0100 Subject: [PATCH] output: Use state field in wlr_output_event_commit --- output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output.c b/output.c index 599d6ad..7ca7bb7 100644 --- a/output.c +++ b/output.c @@ -186,7 +186,7 @@ handle_output_commit(struct wl_listener *listener, void *data) * - output layout change will also be called if needed to position the views * - always update output manager configuration even if the output is now disabled */ - if (event->committed & OUTPUT_CONFIG_UPDATED) { + if (event->state->committed & OUTPUT_CONFIG_UPDATED) { update_output_manager_config(output->server); } }