calendar: make day of week not interactable

This commit is contained in:
end-4
2025-05-26 12:42:25 +02:00
parent 7ab8012e0e
commit 24b369882a
2 changed files with 1 additions and 2 deletions
@@ -10,7 +10,6 @@ RippleButton {
property string day property string day
property int isToday property int isToday
property bool bold property bool bold
property bool interactable: true
Layout.fillWidth: false Layout.fillWidth: false
Layout.fillHeight: false Layout.fillHeight: false
@@ -95,7 +95,7 @@ Item {
day: modelData.day day: modelData.day
isToday: modelData.today isToday: modelData.today
bold: true bold: true
interactable: false enabled: false
} }
} }
} }