janitor: Run cargo clippy --fix

This commit is contained in:
Tobias Hunger 2022-05-21 23:31:29 +02:00 committed by Tobias Hunger
parent 9fc838206a
commit 18cbda0269
12 changed files with 19 additions and 27 deletions

View file

@ -20,7 +20,7 @@ fn main() {
// Assign the shuffled Vec to the model property
let tiles_model = std::rc::Rc::new(slint::VecModel::from(tiles));
main_window.set_memory_tiles(tiles_model.clone().into());
main_window.set_memory_tiles(tiles_model.into());
main_window.run();
}