summaryrefslogtreecommitdiffstats
path: root/views/calendar/qml/DateSelector.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-04 15:51:30 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-04 15:51:30 +0200
commit0b5f790868449db960263214b6ea5d81dbfc3a4b (patch)
tree341c634f7273a0087e0cd06d4ced90223cd58588 /views/calendar/qml/DateSelector.qml
parentdd0e823ddd72dda8adb3da5adf896abaed4feffe (diff)
downloadkube-0b5f790868449db960263214b6ea5d81dbfc3a4b.tar.gz
kube-0b5f790868449db960263214b6ea5d81dbfc3a4b.zip
Clicking date-selector works as well
Diffstat (limited to 'views/calendar/qml/DateSelector.qml')
-rw-r--r--views/calendar/qml/DateSelector.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/views/calendar/qml/DateSelector.qml b/views/calendar/qml/DateSelector.qml
index cdaa819b..890a1a8b 100644
--- a/views/calendar/qml/DateSelector.qml
+++ b/views/calendar/qml/DateSelector.qml
@@ -97,5 +97,9 @@ Column {
97 visible: model.day === root.selectedDate.getDate() && model.month === root.selectedDate.getMonth() 97 visible: model.day === root.selectedDate.getDate() && model.month === root.selectedDate.getMonth()
98 } 98 }
99 } 99 }
100
101 onClicked: {
102 root.selectedDate = date
103 }
100 } 104 }
101} 105}