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

eframe: Remove warm-starting (#3574)

This was an ill-supported feature with little benefit or use.
This commit is contained in:
Emil Ernerfeldt
2023-11-19 11:21:38 +01:00
committed by GitHub
parent 74862bd129
commit a23b959fd4
5 changed files with 7 additions and 75 deletions

View File

@@ -58,8 +58,7 @@ impl WebRunner {
let follow_system_theme = web_options.follow_system_theme;
let mut runner = AppRunner::new(canvas_id, web_options, app_creator).await?;
runner.warm_up();
let runner = AppRunner::new(canvas_id, web_options, app_creator).await?;
self.runner.replace(Some(runner));
{