Fix clippy::map_clone lint violations (#36585)

#36577

Release Notes:

- N/A
This commit is contained in:
tidely 2025-08-20 17:34:52 +03:00 committed by GitHub
parent eaf6b56163
commit 92352f97ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 3 deletions

View file

@ -2108,7 +2108,7 @@ fn current_pointer_device_states(
.classes
.iter()
.filter_map(|class| class.data.as_scroll())
.map(|class| *class)
.copied()
.rev()
.collect::<Vec<_>>();
let old_state = scroll_values_to_preserve.get(&info.deviceid);