summaryrefslogtreecommitdiffstats
path: root/native/src/widget/column.rs
diff options
context:
space:
mode:
Diffstat (limited to 'native/src/widget/column.rs')
-rw-r--r--native/src/widget/column.rs10
1 files changed, 1 insertions, 9 deletions
diff --git a/native/src/widget/column.rs b/native/src/widget/column.rs
index 9ee60627..e0e88d31 100644
--- a/native/src/widget/column.rs
+++ b/native/src/widget/column.rs
@@ -198,19 +198,11 @@ where
fn overlay(
&mut self,
layout: Layout<'_>,
- overlay_content_bounds: Option<Rectangle>,
- cursor_position: Point,
) -> Option<overlay::Element<'_, Message, Renderer>> {
self.children
.iter_mut()
.zip(layout.children())
- .filter_map(|(child, layout)| {
- child.widget.overlay(
- layout,
- overlay_content_bounds,
- cursor_position,
- )
- })
+ .filter_map(|(child, layout)| child.widget.overlay(layout))
.next()
}
}