Remove unnecessary clone in scrollable example

This commit is contained in:
Héctor Ramón Jiménez 2022-11-03 03:26:10 +01:00
parent 3517dece26
commit f04336dd5c
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -205,7 +205,7 @@ impl Application for ScrollableDemo {
}
fn theme(&self) -> Theme {
self.theme.clone()
self.theme
}
}