summaryrefslogtreecommitdiffstats
path: root/views/calendar/qml/DayChooser.qml
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2018-04-19 11:34:24 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2018-04-19 11:36:49 +0200
commit49b240ffa141dbab6f7d03c4d682abcd70faf594 (patch)
tree03edb765ac163b2a477f83a4fa505217919eeeda /views/calendar/qml/DayChooser.qml
parent5811835d67f215258c28e14f65059e7b22a3d3f5 (diff)
downloadkube-49b240ffa141dbab6f7d03c4d682abcd70faf594.tar.gz
kube-49b240ffa141dbab6f7d03c4d682abcd70faf594.zip
hide time chooser when daylong event
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 }