From 69aa649e352be501d8c6746b7a62aaae20747524 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Fri, 3 Apr 2026 08:25:01 -0400 Subject: [PATCH] fix: font issues some fonts are not falling back when a glyph is missing for a selected font and weight --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 35d048ee..bdbc141b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,7 @@ name = "cosmic" [features] default = [ + "advanced-shaping", "winit", "tokio", "a11y", @@ -16,7 +17,8 @@ default = [ "x11", "iced-wayland", "multi-window", -] # default = ["dbus-config", "multi-window", "a11y"] +] +advanced-shaping = ["iced/advanced-shaping"] # Accessibility support a11y = ["iced/a11y", "iced_accessibility"] # Enable about widget