1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 05:40:03 -04:00

Rename epi::App::ui to epi::App::update

This commit is contained in:
Emil Ernerfeldt
2021-01-01 20:22:18 +01:00
parent defad4ed51
commit b1022d01c1
6 changed files with 8 additions and 8 deletions

View File

@@ -150,7 +150,7 @@ pub fn run(mut app: Box<dyn epi::App>) -> ! {
repaint_signal: repaint_signal.clone(),
}
.build();
app.ui(&ctx, &mut frame);
app.update(&ctx, &mut frame);
let (egui_output, paint_commands) = ctx.end_frame();
let paint_jobs = ctx.tessellate(paint_commands);