From bcc01c8b1c3d9b0ca8542222110f5fba4de4f3b4 Mon Sep 17 00:00:00 2001 From: Asger Nyman Christiansen Date: Tue, 2 Aug 2022 23:04:59 +0200 Subject: [PATCH] Add `egui/default_fonts` feature to `pure_glow` example (#1881) It seems to me like the `pure_glow` example was broken sometime in april because of changes to feature flags. The text simply didn't show up which is due to missing fonts unless you figured out that you needed the `egui/default_fonts` feature flag. This change enforces the use of the `egui/default_fonts` feature flag in this example. --- egui_glow/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egui_glow/Cargo.toml b/egui_glow/Cargo.toml index 3d390637..3db0af71 100644 --- a/egui_glow/Cargo.toml +++ b/egui_glow/Cargo.toml @@ -77,4 +77,4 @@ glutin = "0.28.0" # examples/pure_glow [[example]] name = "pure_glow" -required-features = ["winit"] +required-features = ["winit", "egui/default_fonts"]