diff --git a/src/text_render.rs b/src/text_render.rs index bc8b7b6..a1395d3 100644 --- a/src/text_render.rs +++ b/src/text_render.rs @@ -109,8 +109,11 @@ impl TextRenderer { { atlas.color_atlas.promote(physical_glyph.cache_key); } else { - let Some(image) = cache - .get_image_uncached(font_system, physical_glyph.cache_key) else { continue }; + let Some(image) = + cache.get_image_uncached(font_system, physical_glyph.cache_key) + else { + continue; + }; let content_type = match image.content { SwashContent::Color => ContentType::Color,