summaryrefslogtreecommitdiffstats
path: root/views/calendar/qml/WeekView.qml
diff options
context:
space:
mode:
authorRémi Nicole <nicole@kolabsystems.com>2018-05-15 12:01:09 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-05-15 12:01:42 +0200
commit455809b0e5d6e80406867aa8f5a74aa10a39bf35 (patch)
treebc50d0dfaca7f12695c959ac87c797293f49a3f3 /views/calendar/qml/WeekView.qml
parentd353ec997f06891455dce9b51333687da670a03e (diff)
downloadkube-455809b0e5d6e80406867aa8f5a74aa10a39bf35.tar.gz
kube-455809b0e5d6e80406867aa8f5a74aa10a39bf35.zip
Implement DayLongEventModel and integrate it to the calendar
Summary: Fixes T8697 Reviewers: cmollekopf Reviewed By: cmollekopf Tags: #kube Maniphest Tasks: T8697 Differential Revision: https://phabricator.kde.org/D12875
Diffstat (limited to 'views/calendar/qml/WeekView.qml')
-rw-r--r--views/calendar/qml/WeekView.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/views/calendar/qml/WeekView.qml b/views/calendar/qml/WeekView.qml
index f798e489..bcf037fa 100644
--- a/views/calendar/qml/WeekView.qml
+++ b/views/calendar/qml/WeekView.qml
@@ -97,7 +97,8 @@ FocusScope {
97 width: root.dayWidth * model.duration 97 width: root.dayWidth * model.duration
98 height: parent.height 98 height: parent.height
99 x: root.dayWidth * model.starts 99 x: root.dayWidth * model.starts
100 color: model.color 100 //color: model.color
101 color: Kube.Colors.jazzberryJam
101 border.width: 1 102 border.width: 1
102 border.color: Kube.Colors.viewBackgroundColor 103 border.color: Kube.Colors.viewBackgroundColor
103 104
@@ -107,7 +108,7 @@ FocusScope {
107 leftMargin: Kube.Units.smallSpacing 108 leftMargin: Kube.Units.smallSpacing
108 } 109 }
109 color: Kube.Colors.highlightedTextColor 110 color: Kube.Colors.highlightedTextColor
110 text: model.text 111 text: model.summary
111 } 112 }
112 } 113 }
113 } 114 }