Remove unnecessary egui dependency, use eframe::egui re-exports instead

This commit is contained in:
Developer
2026-05-13 22:58:33 +08:00
parent 2bdb8a90b9
commit 8b42a3d679
4 changed files with 2 additions and 4 deletions

View File

@@ -7,5 +7,5 @@ impl App {
}
impl eframe::App for App {
fn update(&mut self, _ctx: &egui::Context, _frame: &mut eframe::Frame) {}
fn update(&mut self, _ctx: &eframe::egui::Context, _frame: &mut eframe::Frame) {}
}

View File

@@ -1 +1 @@
pub fn setup_fonts(_ctx: &egui::Context) {}
pub fn setup_fonts(_ctx: &eframe::egui::Context) {}