diff options
Diffstat (limited to 'views/calendar/qml/WeekView.qml')
-rw-r--r-- | views/calendar/qml/WeekView.qml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/views/calendar/qml/WeekView.qml b/views/calendar/qml/WeekView.qml index 980ec432..2d16b772 100644 --- a/views/calendar/qml/WeekView.qml +++ b/views/calendar/qml/WeekView.qml | |||
@@ -30,6 +30,7 @@ FocusScope { | |||
30 | property var hourHeight: Kube.Units.gridUnit * 2 | 30 | property var hourHeight: Kube.Units.gridUnit * 2 |
31 | property date currentDate | 31 | property date currentDate |
32 | property date startDate: currentDate | 32 | property date startDate: currentDate |
33 | property var calendarFilter | ||
33 | 34 | ||
34 | Item { | 35 | Item { |
35 | anchors { | 36 | anchors { |
@@ -94,6 +95,7 @@ FocusScope { | |||
94 | model: Kube.DayLongEventModel { | 95 | model: Kube.DayLongEventModel { |
95 | start: root.startDate | 96 | start: root.startDate |
96 | length: root.daysToShow | 97 | length: root.daysToShow |
98 | calendarFilter: root.calendarFilter | ||
97 | } | 99 | } |
98 | 100 | ||
99 | delegate: Item { | 101 | delegate: Item { |
@@ -181,6 +183,7 @@ FocusScope { | |||
181 | model: Kube.PeriodDayEventModel { | 183 | model: Kube.PeriodDayEventModel { |
182 | start: root.startDate | 184 | start: root.startDate |
183 | length: root.daysToShow | 185 | length: root.daysToShow |
186 | calendarFilter: root.calendarFilter | ||
184 | } | 187 | } |
185 | delegate: Rectangle { | 188 | delegate: Rectangle { |
186 | id: dayDelegate | 189 | id: dayDelegate |