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.
This commit is contained in:
Asger Nyman Christiansen 2022-08-02 23:04:59 +02:00 committed by GitHub
parent e288ca86fd
commit bcc01c8b1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -77,4 +77,4 @@ glutin = "0.28.0" # examples/pure_glow
[[example]]
name = "pure_glow"
required-features = ["winit"]
required-features = ["winit", "egui/default_fonts"]