summaryrefslogtreecommitdiffstats
path: root/native/src/widget/combo_box.rs
diff options
context:
space:
mode:
Diffstat (limited to 'native/src/widget/combo_box.rs')
-rw-r--r--native/src/widget/combo_box.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/native/src/widget/combo_box.rs b/native/src/widget/combo_box.rs
index 0f249282..2adee884 100644
--- a/native/src/widget/combo_box.rs
+++ b/native/src/widget/combo_box.rs
@@ -1,7 +1,8 @@
use crate::{
- layer::{self, menu},
- layout, mouse, scrollable, text, Clipboard, Element, Event, Hasher, Layout,
- Length, Overlay, Point, Rectangle, Size, Widget,
+ layout, mouse,
+ overlay::menu::{self, Menu},
+ scrollable, text, Clipboard, Element, Event, Hasher, Layout, Length,
+ Overlay, Point, Rectangle, Size, Widget,
};
use std::borrow::Cow;
@@ -214,7 +215,7 @@ where
Some(Overlay::new(
layout.position(),
- Box::new(layer::Menu::new(
+ Box::new(Menu::new(
menu,
self.options.clone(),
on_selected,