From b73cf6d33e4eec99f5aa730ad19bbe4da8e53fd7 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Sat, 19 Mar 2022 15:59:45 -0400 Subject: [PATCH] update egui --- src/egui_app.rs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/egui_app.rs b/src/egui_app.rs index c2665aa..b15a4f4 100644 --- a/src/egui_app.rs +++ b/src/egui_app.rs @@ -684,12 +684,7 @@ impl epi::App for MathApp { .collect(); }); }); - self.last_info = (area_list, start.elapsed()); // Store list of functions' areas - // along with the time it took to - // process. + // Store list of functions' areas along with the time it took to process. + self.last_info = (area_list, start.elapsed()); } - - // Uncaps max canvas size. This was capped in egui due to a bug in Firefox. But - // it's fixed now. - fn max_size_points(&self) -> Vec2 { Vec2::new(f32::MAX, f32::MAX) } }