1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 06:40:06 -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

@@ -100,11 +100,11 @@ impl eframe::App for Custom3d {
fn update(
&mut self,
ctx: &egui::Context,
frame: &mut eframe::Frame,
_frame: &mut eframe::Frame,
render: Option<&ViewportRender>,
) {
if let Some(render) = render {
render(ctx, ctx.get_viewport_id(), ctx.get_parent_viewport_id());
render(ctx);
return;
}
egui::CentralPanel::default().show(ctx, |ui| {

View File

@@ -433,7 +433,6 @@ impl EguiWindows {
tmp_ctx.memory_ui(ui);
});
let tmp_output_event_history = output_event_history.clone();
egui::Window::new("📤 Output Events")
.open(output_events)
.resizable(true)