1
0
Fork 0
forked from wry/wry

head-management: send mode separately from pos/size changes

This commit is contained in:
Julian Orth 2025-07-16 15:31:18 +02:00
parent 2c116e2a16
commit 18f9742d2c
2 changed files with 11 additions and 1 deletions

View file

@ -466,6 +466,9 @@ impl ConnectorData {
self.head_managers
.handle_colors_change(s.color_space, s.transfer_function);
}
if old.mode != s.mode {
self.head_managers.handle_mode_change(s.mode);
}
if let Some(output) = state.outputs.get(&self.connector.id())
&& let Some(node) = &output.node
{