1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 21:00:03 -04:00

Fix all warnings

This commit is contained in:
Konkitoman
2023-08-15 04:04:52 +03:00
parent 17cd31636f
commit 18575d5931
14 changed files with 115 additions and 163 deletions

View File

@@ -162,6 +162,6 @@ fn main() {
initial_window_size: Some(egui::Vec2::new(400.0, 220.0)),
..NativeOptions::default()
},
Box::new(|_| Box::new(App::default())),
Box::new(|_| Box::<App>::default()),
);
}