From 7742bb5cc068b990d98f41c95b67f86eaffe961d Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Tue, 25 Nov 2025 19:59:23 -0500 Subject: [PATCH] OSD: fix non existing fontWeight --- Modules/OSD/OSD.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/OSD/OSD.qml b/Modules/OSD/OSD.qml index b73a749b..f5ea0a1a 100644 --- a/Modules/OSD/OSD.qml +++ b/Modules/OSD/OSD.qml @@ -488,7 +488,7 @@ Variants { color: root.currentOSDType === OSD.Type.LockKey ? root.getProgressColor() : Color.mOnSurface pointSize: root.currentOSDType === OSD.Type.LockKey ? Style.fontSizeM : Style.fontSizeS family: Settings.data.ui.fontFixed - font.weight: root.currentOSDType === OSD.Type.LockKey ? Style.fontWeightMedium : Style.fontWeightNormal + font.weight: root.currentOSDType === OSD.Type.LockKey ? Style.fontWeightMedium : Style.fontWeightRegular Layout.fillWidth: true Layout.alignment: Qt.AlignHCenter horizontalAlignment: Text.AlignHCenter