1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 13:20:05 -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

@@ -203,7 +203,7 @@ impl AppRunner {
.build();
let egui_ctx = &self.web_backend.ctx;
self.app.ui(egui_ctx, &mut frame);
self.app.update(egui_ctx, &mut frame);
let (egui_output, paint_jobs) = self.web_backend.end_frame()?;
handle_output(&egui_output);