parent
037f45f24e
commit
0201ef9205
1 changed files with 3 additions and 1 deletions
|
@ -2252,7 +2252,9 @@ pub fn completion(cx: &mut Context) {
|
|||
}
|
||||
use crate::compositor::AnyComponent;
|
||||
let size = compositor.size();
|
||||
let ui = compositor.find("hx::ui::editor::EditorView").unwrap();
|
||||
let ui = compositor
|
||||
.find(std::any::type_name::<ui::EditorView>())
|
||||
.unwrap();
|
||||
if let Some(ui) = ui.as_any_mut().downcast_mut::<ui::EditorView>() {
|
||||
ui.set_completion(items, offset_encoding, trigger_offset, size);
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue