From 80bc678476db70cbdab5ba3e4279c79fae14e756 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 24 Feb 2022 08:29:58 -0500 Subject: [PATCH] cleanup --- src/egui_app.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/egui_app.rs b/src/egui_app.rs index fbed75a..06b12da 100644 --- a/src/egui_app.rs +++ b/src/egui_app.rs @@ -91,11 +91,13 @@ impl epi::App for MathApp { ui.add(egui::Slider::new(num_interval, 10..=usize::MAX).text("Interval")); - // ui.hyperlink_to("Supported Expressions", "https://github.com/Titaniumtown/meval-rs#supported-expressions"); - ui.hyperlink_to("I'm Opensource! (and licensed under AGPLv3)", "https://github.com/Titaniumtown/integral_site"); + ui.hyperlink_to( + "I'm Opensource! (and licensed under AGPLv3)", + "https://github.com/Titaniumtown/integral_site", + ); }); - let _update_back = chart_manager.do_update_back(func_str.clone(), *min_x, *max_x); + // let update_back = chart_manager.do_update_back(func_str.clone(), *min_x, *max_x); let update_front = chart_manager.do_update_front(*num_interval, *resolution); egui::CentralPanel::default().show(ctx, |ui| {