summaryrefslogtreecommitdiffstats
path: root/views/calendar/qml/View.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-20 10:43:21 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-20 10:43:21 +0200
commit9c8c1c5ec412644be792253088ed22f38132d8ad (patch)
treeee16b43789515b95d3d04f8461307dc1d643a24b /views/calendar/qml/View.qml
parent8b55e49f6e08312b9da0f228124f24068a073ee2 (diff)
downloadkube-9c8c1c5ec412644be792253088ed22f38132d8ad.tar.gz
kube-9c8c1c5ec412644be792253088ed22f38132d8ad.zip
Cleaner layouting of calendar sidebar
Diffstat (limited to 'views/calendar/qml/View.qml')
-rw-r--r--views/calendar/qml/View.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/views/calendar/qml/View.qml b/views/calendar/qml/View.qml
index e25baa15..e49894ca 100644
--- a/views/calendar/qml/View.qml
+++ b/views/calendar/qml/View.qml
@@ -78,6 +78,7 @@ RowLayout {
78 right: parent.right 78 right: parent.right
79 margins: Kube.Units.largeSpacing 79 margins: Kube.Units.largeSpacing
80 } 80 }
81 spacing: Kube.Units.largeSpacing
81 Kube.PositiveButton { 82 Kube.PositiveButton {
82 id: newEventButton 83 id: newEventButton
83 objectName: "newEventButton" 84 objectName: "newEventButton"
@@ -108,7 +109,7 @@ RowLayout {
108 bottomMargin: Kube.Units.largeSpacing 109 bottomMargin: Kube.Units.largeSpacing
109 rightMargin: Kube.Units.largeSpacing 110 rightMargin: Kube.Units.largeSpacing
110 } 111 }
111 height: Math.min(implicitHeight, parent.height - (topLayout.y + topLayout.height) - Kube.Units.largeSpacing) 112 height: Math.min(implicitHeight, parent.height - (topLayout.y + topLayout.height) - Kube.Units.largeSpacing - anchors.bottomMargin)
112 113
113 spacing: Kube.Units.largeSpacing 114 spacing: Kube.Units.largeSpacing
114 115