From ffdad677633e5d34060ee541f8fc100cd9549c58 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Thu, 9 Jul 2015 13:41:16 +0200 Subject: [PATCH] add an empty margin --- containments/homescreen/package/contents/ui/AppletsArea.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/containments/homescreen/package/contents/ui/AppletsArea.qml b/containments/homescreen/package/contents/ui/AppletsArea.qml index 902c786e..9226c7f1 100644 --- a/containments/homescreen/package/contents/ui/AppletsArea.qml +++ b/containments/homescreen/package/contents/ui/AppletsArea.qml @@ -112,8 +112,8 @@ MouseEventListener { } Item { Layout.fillWidth: true - Layout.minimumHeight: plasmoid.availableScreenRect.height - Layout.maximumHeight: plasmoid.availableScreenRect.height + Layout.minimumHeight: plasmoid.availableScreenRect.height + units.gridUnit * 3 + Layout.maximumHeight: Layout.minimumHeight Clock { anchors { horizontalCenter: parent.horizontalCenter @@ -130,6 +130,7 @@ MouseEventListener { anchors { horizontalCenter: parent.horizontalCenter bottom: parent.bottom + bottomMargin: units.gridUnit * 3 } } }