diff options
-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 | ||