From 16fd622f666241dbb9afd6f8eca2f4fcd7eaf595 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Mon, 21 Mar 2022 18:09:02 -0400 Subject: [PATCH] cleanup import --- src/egui_app.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/egui_app.rs b/src/egui_app.rs index 3683a31..c97eae8 100644 --- a/src/egui_app.rs +++ b/src/egui_app.rs @@ -3,11 +3,10 @@ use crate::misc::{debug_log, log_helper, JsonFileOutput, SerdeValueHelper}; use crate::parsing::{process_func_str, test_func}; use const_format::formatc; -use eframe::egui::Key; use eframe::{egui, epi}; use egui::plot::Plot; use egui::{ - Button, CentralPanel, Color32, ComboBox, Context, FontData, FontDefinitions, FontFamily, + Button, CentralPanel, Color32, ComboBox, Context, FontData, FontDefinitions, FontFamily, Key, RichText, SidePanel, Slider, TopBottomPanel, Vec2, Visuals, Window, }; use epi::Frame;