summaryrefslogtreecommitdiffstats
path: root/widget
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--widget/src/combo_box.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/widget/src/combo_box.rs b/widget/src/combo_box.rs
index 5e36ec57..690ef27c 100644
--- a/widget/src/combo_box.rs
+++ b/widget/src/combo_box.rs
@@ -735,7 +735,7 @@ where
options
.into_iter()
- .zip(option_matchers.into_iter())
+ .zip(option_matchers)
// Make sure each part of the query is found in the option
.filter_map(move |(option, matcher)| {
if query.iter().all(|part| matcher.as_ref().contains(part)) {