summaryrefslogtreecommitdiffstats
path: root/widget/src/combo_box.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-08-26 01:34:42 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-08-26 01:34:42 +0200
commit8ed06dc356e0296f0b800d4d6b92998bd4444cc6 (patch)
tree27b80a5fea2dd0b1c04d9537443778761167da35 /widget/src/combo_box.rs
parente0eb19d4cd2002c449286e67abe9a88071cd4909 (diff)
downloadiced-8ed06dc356e0296f0b800d4d6b92998bd4444cc6.tar.gz
iced-8ed06dc356e0296f0b800d4d6b92998bd4444cc6.tar.bz2
iced-8ed06dc356e0296f0b800d4d6b92998bd4444cc6.zip
Fix `clippy` lints for Rust 1.72
Diffstat (limited to 'widget/src/combo_box.rs')
-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)) {