From e74dfbe45525ffbb55ad0dca52c2ed33ae1e6a8c Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 26 Apr 2024 09:39:53 +0900 Subject: [PATCH] remove the bold clocks --- Components/Clock.qml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Components/Clock.qml b/Components/Clock.qml index 5275c2b..aca05d8 100644 --- a/Components/Clock.qml +++ b/Components/Clock.qml @@ -23,7 +23,6 @@ Column { id: timeLabel anchors.horizontalCenter: parent.horizontalCenter font.pointSize: root.font.pointSize * 3 - font.bold: true color: root.palette.text renderType: Text.QtRendering function updateTime() { @@ -36,7 +35,6 @@ Column { anchors.horizontalCenter: parent.horizontalCenter color: root.palette.text font.pointSize: root.font.pointSize * 2 - font.bold: true renderType: Text.QtRendering function updateTime() { text = new Date().toLocaleDateString(Qt.locale(config.Locale), config.DateFormat == "short" ? Locale.ShortFormat : config.DateFormat !== "" ? config.DateFormat : Locale.LongFormat)