mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-26 17:03:09 +00:00
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:
parent
8925ebe3df
commit
4d21b8dba0
1 changed files with 1 additions and 1 deletions
|
|
@ -496,7 +496,7 @@ fn connector_connected(
|
|||
crtc,
|
||||
mode,
|
||||
&[connector.handle()],
|
||||
&output,
|
||||
output.clone(),
|
||||
planes,
|
||||
&mut renderer,
|
||||
&DrmOutputRenderElements::default(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue