(
&self,
window_bounds: &WindowBounds,
adapter: &Adapter,
old: &NodeWrapper<'_>,
)
| 536 | } |
| 537 | |
| 538 | pub(crate) fn notify_changes( |
| 539 | &self, |
| 540 | window_bounds: &WindowBounds, |
| 541 | adapter: &Adapter, |
| 542 | old: &NodeWrapper<'_>, |
| 543 | ) { |
| 544 | self.notify_state_changes(adapter, old); |
| 545 | self.notify_property_changes(adapter, old); |
| 546 | self.notify_bounds_changes(window_bounds, adapter, old); |
| 547 | self.notify_children_changes(adapter, old); |
| 548 | } |
| 549 | |
| 550 | fn notify_state_changes(&self, adapter: &Adapter, old: &NodeWrapper<'_>) { |
| 551 | let old_state = old.state(true); |
no test coverage detected