Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions widget/src/combo_box.rs
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,8 @@ where
let mut local_shell = Shell::new(&mut local_messages);

// Provide it to the widget
self.text_input.update(
Widget::update(
&mut self.text_input,
&mut tree.children[0],
event,
layout,
Expand Down Expand Up @@ -719,7 +720,8 @@ where
// Unfocus the input
let mut local_messages = Vec::new();
let mut local_shell = Shell::new(&mut local_messages);
self.text_input.update(
Widget::update(
&mut self.text_input,
&mut tree.children[0],
&Event::Mouse(mouse::Event::ButtonPressed(mouse::Button::Left)),
layout,
Expand Down
Loading