From b94615b3eb0a62db429954c112cc5119e42a64e1 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Mon, 7 Oct 2019 12:04:53 -0400 Subject: [PATCH] macos: Remove font size attribute from font descriptor. --- components/gfx/platform/macos/font_template.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/gfx/platform/macos/font_template.rs b/components/gfx/platform/macos/font_template.rs index d5ae5138872..1544f6d9c66 100644 --- a/components/gfx/platform/macos/font_template.rs +++ b/components/gfx/platform/macos/font_template.rs @@ -108,10 +108,6 @@ impl FontTemplateData { CFString::new("NSFontNameAttribute"), CFString::new(&*self.identifier).as_CFType(), ), - ( - CFString::new("NSFontSizeAttribute"), - CFNumber::from(clamped_pt_size).as_CFType(), - ), ]); let descriptor = font_descriptor::new_from_attributes(&attributes);