From 2c62ad093c7d7ff555492af7c0bf8478b1cccae8 Mon Sep 17 00:00:00 2001 From: zach Date: Mon, 17 Aug 2026 18:30:43 +0200 Subject: [PATCH] fix incorrect font property for other text objects in clock --- Modules/Bar/Components/Clock.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Bar/Components/Clock.qml b/Modules/Bar/Components/Clock.qml index be0b5bd..b6dd07d 100644 --- a/Modules/Bar/Components/Clock.qml +++ b/Modules/Bar/Components/Clock.qml @@ -57,7 +57,7 @@ WidgetBase { anchors.centerIn: parent color: root.contentColor - font: Config.appearance.font.family.mono // qmllint disable incompatible-type + font.family: Config.appearance.font.family.mono // qmllint disable incompatible-type height: implicitHeight text: Time.dateStr visible: root.horizontal @@ -84,7 +84,7 @@ WidgetBase { Layout.alignment: Qt.AlignHCenter color: root.contentColor - font: Config.appearance.font.family.mono // qmllint disable incompatible-type + font.family: Config.appearance.font.family.mono // qmllint disable incompatible-type text: Qt.formatDateTime(Time.date, modelData) Behavior on color {