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

Fix web build

This commit is contained in:
Emil Ernerfeldt
2023-11-15 21:13:28 +01:00
parent d231a05a1d
commit 46bea93744
2 changed files with 8 additions and 8 deletions

View File

@@ -94,7 +94,7 @@ impl AppRunner {
{
let needs_repaint = needs_repaint.clone();
egui_ctx.set_request_repaint_callback(move |info| {
needs_repaint.repaint_after(info.after.as_secs_f64());
needs_repaint.repaint_after(info.delay.as_secs_f64());
});
}