head-management: handle additional properties
This commit is contained in:
parent
cbe190274e
commit
da01d7e0d3
5 changed files with 44 additions and 4 deletions
|
|
@ -1000,6 +1000,10 @@ impl OutputNode {
|
|||
.replace(use_native_gamut);
|
||||
if old != use_native_gamut {
|
||||
self.update_color_description();
|
||||
self.global
|
||||
.connector
|
||||
.head_managers
|
||||
.handle_use_native_gamut_change(use_native_gamut);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1007,6 +1011,10 @@ impl OutputNode {
|
|||
let old = self.global.persistent.blend_space.replace(blend_space);
|
||||
if old != blend_space {
|
||||
self.state.damage(self.global.position());
|
||||
self.global
|
||||
.connector
|
||||
.head_managers
|
||||
.handle_blend_space_change(blend_space);
|
||||
}
|
||||
}
|
||||
fn find_stacked_at(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue