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

Fix the change that change from a Vec to HashMap braked web and pure_glow

This commit is contained in:
Konkitoman
2023-09-26 20:34:09 +03:00
parent f3686e2459
commit 1930d69ae3
2 changed files with 5 additions and 2 deletions

View File

@@ -203,7 +203,7 @@ impl AppRunner {
self.frame.info.cpu_usage = Some((now_sec() - frame_start) as f32);
let (_, repaint_after) = repaint_after[0];
let repaint_after = repaint_after[&egui::ViewportId::MAIN];
(repaint_after, clipped_primitives)
}