From 8be5689da067cbe827f47b21f997a53f072e5b2d Mon Sep 17 00:00:00 2001 From: pika Date: Tue, 10 Jun 2025 18:09:13 +0200 Subject: [PATCH] wip --- modules/bar/popouts/Calendar.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/bar/popouts/Calendar.qml b/modules/bar/popouts/Calendar.qml index beae51c..47fcfff 100644 --- a/modules/bar/popouts/Calendar.qml +++ b/modules/bar/popouts/Calendar.qml @@ -7,7 +7,7 @@ Column { id: root spacing: Appearance.spacing.normal - width: 250 + width: 340 property date currentDate: new Date() property bool isCurrentMonth: true @@ -357,19 +357,19 @@ Column { StyledText { text: " Usage:" - font.pointSize: Appearance.font.size.smaller + font.pointSize: Appearance.font.size.tiny color: "#505050" } StyledText { text: " • Scroll to navigate" - font.pointSize: Appearance.font.size.smaller + font.pointSize: Appearance.font.size.tiny color: "#505050" } StyledText { - text: " • Right-click = days from/till today" - font.pointSize: Appearance.font.size.smaller + text: " • Right-click calculates days from/till today" + font.pointSize: Appearance.font.size.tiny color: "#505050" } }