From c701192c08e5d949df386e72cb80e57ebadad67e Mon Sep 17 00:00:00 2001 From: quadbyte Date: Sat, 9 Aug 2025 18:05:11 -0400 Subject: [PATCH] Reset scaling to 1.0 --- Modules/Bar/Clock.qml | 2 +- Services/Scaling.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Bar/Clock.qml b/Modules/Bar/Clock.qml index aa7a361..fc15665 100644 --- a/Modules/Bar/Clock.qml +++ b/Modules/Bar/Clock.qml @@ -16,7 +16,7 @@ Rectangle { text: Time.time font.family: Theme.fontFamily font.weight: Font.Bold - font.pointSize: Style.fontSmall * scaling + font.pointSize: Style.fontMedium * scaling color: Theme.textPrimary anchors.centerIn: parent } diff --git a/Services/Scaling.qml b/Services/Scaling.qml index 02bf7b2..d71fef4 100644 --- a/Services/Scaling.qml +++ b/Services/Scaling.qml @@ -41,6 +41,6 @@ Singleton { } // 3) Safe default - return 2.0 + return 1.0 } }