summaryrefslogtreecommitdiffstats
path: root/native/src/widget/container.rs
diff options
context:
space:
mode:
Diffstat (limited to 'native/src/widget/container.rs')
-rw-r--r--native/src/widget/container.rs8
1 files changed, 1 insertions, 7 deletions
diff --git a/native/src/widget/container.rs b/native/src/widget/container.rs
index 2fc6707e..65764148 100644
--- a/native/src/widget/container.rs
+++ b/native/src/widget/container.rs
@@ -200,14 +200,8 @@ where
fn overlay(
&mut self,
layout: Layout<'_>,
- overlay_content_bounds: Option<Rectangle>,
- cursor_position: Point,
) -> Option<overlay::Element<'_, Message, Renderer>> {
- self.content.overlay(
- layout.children().next().unwrap(),
- overlay_content_bounds,
- cursor_position,
- )
+ self.content.overlay(layout.children().next().unwrap())
}
}