use official egui again

This commit is contained in:
Simon Gardling 2022-03-28 02:51:09 -04:00
parent a63841c3c3
commit e0709ae845
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ opt-level = 2
lto = false lto = false
[dependencies] [dependencies]
eframe = { git = "https://github.com/Titaniumtown/egui.git", default-features = false } eframe = { git = "https://github.com/emilk/egui.git", default-features = false }
shadow-rs = { version = "0.11.0", default-features = false } shadow-rs = { version = "0.11.0", default-features = false }
const_format = { version = "0.2.22", default-features = false, features = [ const_format = { version = "0.2.22", default-features = false, features = [
"fmt", "fmt",

View File

@ -525,7 +525,7 @@ impl MathApp {
impl epi::App for MathApp { impl epi::App for MathApp {
// Called each time the UI needs repainting, which may be many times per second. // Called each time the UI needs repainting, which may be many times per second.
fn update(&mut self, ctx: &Context, _frame: &Frame) { fn update(&mut self, ctx: &Context, _frame: &mut Frame) {
let start = instant::Instant::now(); let start = instant::Instant::now();
// Set dark/light mode depending on the variable `self.settings.dark_mode` // Set dark/light mode depending on the variable `self.settings.dark_mode`