diff --git a/cosmic-settings/src/pages/desktop/appearance/font_config.rs b/cosmic-settings/src/pages/desktop/appearance/font_config.rs index e4a0b37..669f003 100644 --- a/cosmic-settings/src/pages/desktop/appearance/font_config.rs +++ b/cosmic-settings/src/pages/desktop/appearance/font_config.rs @@ -28,10 +28,7 @@ pub fn load_font_families() -> (Vec>, Vec>) { font_system.raw().db().faces().fold( (Vec::new(), Vec::new()), |(mut interface, mut mono), face| { - if face.stretch != fontdb::Stretch::Normal - || face.weight != fontdb::Weight::NORMAL - || face.style != fontdb::Style::Normal - { + if face.stretch != fontdb::Stretch::Normal || face.style != fontdb::Style::Normal { return (interface, mono); }