From 2432b1fe071e1f77256fd687c74ee154316a6051 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 10 Oct 2024 16:30:31 +0200 Subject: [PATCH] output: use backend-wide timeline feature flag --- types/output/output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/output/output.c b/types/output/output.c index 2dcd2422..e52803fc 100644 --- a/types/output/output.c +++ b/types/output/output.c @@ -638,7 +638,7 @@ static bool output_basic_test(struct wlr_output *output, } if ((state->committed & (WLR_OUTPUT_STATE_WAIT_TIMELINE | WLR_OUTPUT_STATE_SIGNAL_TIMELINE)) && - !output->timeline) { + !output->backend->features.timeline) { wlr_log(WLR_DEBUG, "Wait/signal timelines are not supported for this output"); return false; }