diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2018-03-01 15:51:26 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2018-03-01 15:51:51 +0100 |
commit | b4ff13c2300afe8a629325d77553e4a9a50cc3ec (patch) | |
tree | 7735dccd0cb39cf9fa9f9a3611b0dc762a392b8b /views/calendar/qml/View.qml | |
parent | 787c2aaaa5ee256a9467aef73f61887b93894ec9 (diff) | |
download | kube-b4ff13c2300afe8a629325d77553e4a9a50cc3ec.tar.gz kube-b4ff13c2300afe8a629325d77553e4a9a50cc3ec.zip |
border for the daylong view
Diffstat (limited to 'views/calendar/qml/View.qml')
-rw-r--r-- | views/calendar/qml/View.qml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/views/calendar/qml/View.qml b/views/calendar/qml/View.qml index 36989032..e7df6dd2 100644 --- a/views/calendar/qml/View.qml +++ b/views/calendar/qml/View.qml | |||
@@ -33,9 +33,7 @@ FocusScope { | |||
33 | anchors.centerIn: parent | 33 | anchors.centerIn: parent |
34 | 34 | ||
35 | DayOfWeekRow { | 35 | DayOfWeekRow { |
36 | |||
37 | anchors.horizontalCenter: parent.horizontalCenter | 36 | anchors.horizontalCenter: parent.horizontalCenter |
38 | |||
39 | spacing: 0 | 37 | spacing: 0 |
40 | locale: Qt.locale("de") | 38 | locale: Qt.locale("de") |
41 | 39 | ||
@@ -62,11 +60,16 @@ FocusScope { | |||
62 | height: Kube.Units.gridUnit * 3 | 60 | height: Kube.Units.gridUnit * 3 |
63 | width: parent.width | 61 | width: parent.width |
64 | color: Kube.Colors.viewBackgroundColor | 62 | color: Kube.Colors.viewBackgroundColor |
63 | border.width: 1 | ||
64 | border.color: Kube.Colors.buttonColor | ||
65 | 65 | ||
66 | ListView { | 66 | ListView { |
67 | id: daylong | 67 | id: daylong |
68 | 68 | ||
69 | anchors.fill: parent | 69 | anchors { |
70 | fill: parent | ||
71 | margins: 1 | ||
72 | } | ||
70 | 73 | ||
71 | model: DaylongEvents {} | 74 | model: DaylongEvents {} |
72 | 75 | ||