summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--views/calendar/qml/View.qml26
1 files changed, 26 insertions, 0 deletions
diff --git a/views/calendar/qml/View.qml b/views/calendar/qml/View.qml
index c0adae9f..78c06d7a 100644
--- a/views/calendar/qml/View.qml
+++ b/views/calendar/qml/View.qml
@@ -73,6 +73,32 @@ RowLayout {
73 color: Kube.Colors.highlightedTextColor 73 color: Kube.Colors.highlightedTextColor
74 } 74 }
75 } 75 }
76
77 Column {
78 anchors {
79 bottom: parent.bottom
80 left: newEventButton.left
81 bottomMargin: Kube.Units.largeSpacing
82 }
83
84 spacing: Kube.Units.smallSpacing
85
86 Repeater {
87
88 model: ["calendar_1","calendar_2","calendar_3"]
89 delegate: Row {
90 spacing: Kube.Units.smallSpacing
91 Kube.CheckBox {
92 opacity: 0.9
93 }
94 Kube.Label {
95 text: modelData
96 color: Kube.Colors.highlightedTextColor
97 }
98 }
99 }
100
101 }
76 } 102 }
77 103
78 WeekView { 104 WeekView {