From 24b369882a8783eada5ad1e69bb4a5ecbdcca8b7 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 26 May 2025 12:42:25 +0200 Subject: [PATCH] calendar: make day of week not interactable --- .../modules/sidebarRight/calendar/CalendarDayButton.qml | 1 - .../quickshell/modules/sidebarRight/calendar/CalendarWidget.qml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.config/quickshell/modules/sidebarRight/calendar/CalendarDayButton.qml b/.config/quickshell/modules/sidebarRight/calendar/CalendarDayButton.qml index 29bfee05..d5989c84 100644 --- a/.config/quickshell/modules/sidebarRight/calendar/CalendarDayButton.qml +++ b/.config/quickshell/modules/sidebarRight/calendar/CalendarDayButton.qml @@ -10,7 +10,6 @@ RippleButton { property string day property int isToday property bool bold - property bool interactable: true Layout.fillWidth: false Layout.fillHeight: false diff --git a/.config/quickshell/modules/sidebarRight/calendar/CalendarWidget.qml b/.config/quickshell/modules/sidebarRight/calendar/CalendarWidget.qml index 659b5505..1f11d87a 100644 --- a/.config/quickshell/modules/sidebarRight/calendar/CalendarWidget.qml +++ b/.config/quickshell/modules/sidebarRight/calendar/CalendarWidget.qml @@ -95,7 +95,7 @@ Item { day: modelData.day isToday: modelData.today bold: true - interactable: false + enabled: false } } }