fix(compositor): pass Output by value to initialize_output

From<Output> for OutputModeSource is more reliably implemented than
From<&Output>, avoiding a potential type mismatch on Linux CI.
This commit is contained in:
Marco Allegretti 2026-03-10 22:37:26 +01:00
parent 8925ebe3df
commit 4d21b8dba0

View file

@ -496,7 +496,7 @@ fn connector_connected(
crtc, crtc,
mode, mode,
&[connector.handle()], &[connector.handle()],
&output, output.clone(),
planes, planes,
&mut renderer, &mut renderer,
&DrmOutputRenderElements::default(), &DrmOutputRenderElements::default(),