From 299cd762de30b5ae162cf599e929b61752645077 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Mon, 14 Sep 2026 18:19:36 +0200 Subject: feat(desktop): pin glyphs to Inconsolata Nerd Font Glyphs are Nerd Font private-use codepoints, and relying on per-codepoint fontconfig fallback from Noto Sans let the same codepoint resolve to a different glyph in a different Nerd Font. A Theme.iconFamily now names the render family once, and every glyph Text uses it, while fontFamily stays Noto Sans for words and labels. The ethernet glyph moves from \uf6ff to \uef44, the fa-ethernet codepoint present in Inconsolata. --- desktop/modules/sound/Osd.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop/modules/sound/Osd.qml') diff --git a/desktop/modules/sound/Osd.qml b/desktop/modules/sound/Osd.qml index 677d211..424b9c3 100644 --- a/desktop/modules/sound/Osd.qml +++ b/desktop/modules/sound/Osd.qml @@ -112,7 +112,7 @@ Scope { anchors.verticalCenter: parent.verticalCenter width: 30 horizontalAlignment: Text.AlignHCenter - font.family: Theme.fontFamily + font.family: Theme.iconFamily font.pixelSize: 24 color: win.muted ? Theme.red : Theme.accent text: { @@ -200,7 +200,7 @@ Scope { anchors.centerIn: parent visible: Player.artUrl === "" || parent.children[0].status !== Image.Ready text: "" - font { family: Theme.fontFamily; pixelSize: 20 } + font { family: Theme.iconFamily; pixelSize: 20 } color: Theme.overlay } } -- cgit v1.2.3