From 8d1d40f1de6f5e3653da033ba650ad2c257a799c Mon Sep 17 00:00:00 2001 From: lysec Date: Tue, 14 Oct 2025 01:18:51 +0200 Subject: [PATCH] LockScreen: reduce clock font slightly --- Modules/LockScreen/LockScreen.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/LockScreen/LockScreen.qml b/Modules/LockScreen/LockScreen.qml index e00843a3..8b646e57 100644 --- a/Modules/LockScreen/LockScreen.qml +++ b/Modules/LockScreen/LockScreen.qml @@ -402,7 +402,7 @@ Loader { var t = Settings.data.location.use12hourFormat ? Qt.locale().toString(Time.date, "hh AP") : Qt.locale().toString(Time.date, "HH") return t } - pointSize: Style.fontSizeL + pointSize: Style.fontSizeM font.weight: Style.fontWeightBold family: Settings.data.ui.fontFixed color: Color.mOnSurface @@ -412,7 +412,7 @@ Loader { NText { text: Qt.formatTime(Time.date, "mm") - pointSize: Style.fontSizeL + pointSize: Style.fontSizeM font.weight: Style.fontWeightBold family: Settings.data.ui.fontFixed color: Color.mOnSurfaceVariant