diff --git a/platforms/atspi-common/src/node.rs b/platforms/atspi-common/src/node.rs index 994dfc03..4e5d7650 100644 --- a/platforms/atspi-common/src/node.rs +++ b/platforms/atspi-common/src/node.rs @@ -421,7 +421,7 @@ impl NodeWrapper<'_> { String::from(if self.0.is_clickable() { "click" } else { "" }) } - fn raw_bounds_and_transform(&self) -> (Option, Affine) { + fn raw_bounds_and_transform(&self) -> (Option<&Rect>, Affine) { let state = self.0; (state.raw_bounds(), state.direct_transform()) }