diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2018-04-19 13:55:01 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2018-04-19 13:55:01 +0200 |
commit | 981e3af756a77e4bf0bb5d7c9f0001d97bd38918 (patch) | |
tree | 6cf8e6eb7229df147899630135bbfc776701f953 | |
parent | 49b240ffa141dbab6f7d03c4d682abcd70faf594 (diff) | |
download | kube-981e3af756a77e4bf0bb5d7c9f0001d97bd38918.tar.gz kube-981e3af756a77e4bf0bb5d7c9f0001d97bd38918.zip |
make events appear at the right time and have the right height
-rw-r--r-- | views/calendar/qml/WeekView.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/calendar/qml/WeekView.qml b/views/calendar/qml/WeekView.qml index 877500c5..9eafe881 100644 --- a/views/calendar/qml/WeekView.qml +++ b/views/calendar/qml/WeekView.qml | |||
@@ -213,8 +213,8 @@ FocusScope { | |||
213 | rightMargin: Kube.Units.smallSpacing | 213 | rightMargin: Kube.Units.smallSpacing |
214 | } | 214 | } |
215 | width: Kube.Units.gridUnit * 7 - Kube.Units.smallSpacing * 2 - Kube.Units.gridUnit * model.modelData.indention | 215 | width: Kube.Units.gridUnit * 7 - Kube.Units.smallSpacing * 2 - Kube.Units.gridUnit * model.modelData.indention |
216 | height: Kube.Units.gridUnit * model.modelData.duration | 216 | height: Kube.Units.gridUnit * model.modelData.duration * 2 |
217 | y: Kube.Units.gridUnit * model.modelData.starts | 217 | y: Kube.Units.gridUnit * model.modelData.starts * 2 |
218 | x: Kube.Units.gridUnit * model.modelData.indention | 218 | x: Kube.Units.gridUnit * model.modelData.indention |
219 | 219 | ||
220 | color: model.modelData.color | 220 | color: model.modelData.color |