summaryrefslogtreecommitdiffstats
path: root/views/calendar/qml/DayChooser.qml
diff options
context:
space:
mode:
Diffstat (limited to 'views/calendar/qml/DayChooser.qml')
-rw-r--r--views/calendar/qml/DayChooser.qml7
1 files changed, 6 insertions, 1 deletions
diff --git a/views/calendar/qml/DayChooser.qml b/views/calendar/qml/DayChooser.qml
index a18bafd0..0a40b1a9 100644
--- a/views/calendar/qml/DayChooser.qml
+++ b/views/calendar/qml/DayChooser.qml
@@ -97,7 +97,6 @@ Item {
97 97
98 Layout.column: 1 98 Layout.column: 1
99 Layout.fillWidth: true 99 Layout.fillWidth: true
100
101 } 100 }
102 101
103 WeekNumberColumn { 102 WeekNumberColumn {
@@ -116,6 +115,12 @@ Item {
116 115
117 Layout.fillWidth: true 116 Layout.fillWidth: true
118 Layout.fillHeight: true 117 Layout.fillHeight: true
118
119 delegate: Kube.AbstractButton {
120 text: model.day
121
122 width: Kube.Units.gridUnit * 3
123 }
119 } 124 }
120 } 125 }
121 } 126 }