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

Add sanity check on pixels_per_point range

This commit is contained in:
Emil Ernerfeldt
2021-02-23 12:03:20 +01:00
parent ec2aab3a72
commit 36d9f8a7c7
2 changed files with 12 additions and 1 deletions

View File

@@ -184,6 +184,12 @@ pub struct Fonts {
impl Fonts {
pub fn from_definitions(pixels_per_point: f32, definitions: FontDefinitions) -> Self {
assert!(
0.0 < pixels_per_point && pixels_per_point < 100.0,
"pixels_per_point out of range: {}",
pixels_per_point
);
// We want an atlas big enough to be able to include all the Emojis in the `TextStyle::Heading`,
// so we can show the Emoji picker demo window.
let mut atlas = TextureAtlas::new(2048, 64);