add an empty margin

This commit is contained in:
Marco Martin 2015-07-09 13:41:16 +02:00
parent 62aec0c07e
commit ffdad67763

View file

@ -112,8 +112,8 @@ MouseEventListener {
} }
Item { Item {
Layout.fillWidth: true Layout.fillWidth: true
Layout.minimumHeight: plasmoid.availableScreenRect.height Layout.minimumHeight: plasmoid.availableScreenRect.height + units.gridUnit * 3
Layout.maximumHeight: plasmoid.availableScreenRect.height Layout.maximumHeight: Layout.minimumHeight
Clock { Clock {
anchors { anchors {
horizontalCenter: parent.horizontalCenter horizontalCenter: parent.horizontalCenter
@ -130,6 +130,7 @@ MouseEventListener {
anchors { anchors {
horizontalCenter: parent.horizontalCenter horizontalCenter: parent.horizontalCenter
bottom: parent.bottom bottom: parent.bottom
bottomMargin: units.gridUnit * 3
} }
} }
} }