From d8cf594e5a607add4571c7fd08af91e1336053fa Mon Sep 17 00:00:00 2001 From: lucy Date: Mon, 9 Feb 2026 19:24:56 +0100 Subject: [PATCH] changes to font --- reusables/CustomIcon.qml | 2 +- reusables/CustomText.qml | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/reusables/CustomIcon.qml b/reusables/CustomIcon.qml index 536573f..56adb77 100644 --- a/reusables/CustomIcon.qml +++ b/reusables/CustomIcon.qml @@ -9,7 +9,7 @@ CustomText { renderType: Text.NativeRendering font { hintingPreference: Font.PreferNoHinting - family: "Material Symbols Rounded" + family: "Material Symbols Outlined" pixelSize: iconSize weight: Font.Normal + (Font.DemiBold - Font.Normal) * truncatedFill variableAxes: { diff --git a/reusables/CustomText.qml b/reusables/CustomText.qml index 81e8eb0..643af2f 100644 --- a/reusables/CustomText.qml +++ b/reusables/CustomText.qml @@ -3,12 +3,8 @@ import qs import qs.settings Text { - verticalAlignment: Text.AlignVCenter color: Colors.onSurfaceColor font.family: Settings.config.font font.pixelSize: Settings.config.fontSize - font.variableAxes: ({ - GRAD: 200, - wght: 400 - }) + font.weight: Settings.config.fontWeight }