diff --git a/declarativeimports/plasmacomponents/fullscreensheet.cpp b/declarativeimports/plasmacomponents/fullscreensheet.cpp index 5210a8330..c728413ce 100644 --- a/declarativeimports/plasmacomponents/fullscreensheet.cpp +++ b/declarativeimports/plasmacomponents/fullscreensheet.cpp @@ -30,7 +30,7 @@ FullScreenSheet::FullScreenSheet(QDeclarativeItem *parent) { init("Sheet"); - view()->setGeometry(QApplication::desktop()->availableGeometry().adjusted(50, 50, 0, 50)); + view()->setGeometry(QApplication::desktop()->availableGeometry()); if (mainItem()) { connect(mainItem(), SIGNAL(acceptButtonChanged()), diff --git a/declarativeimports/plasmacomponents/platformcomponents/touch/Sheet.qml b/declarativeimports/plasmacomponents/platformcomponents/touch/Sheet.qml index c988996e0..7aed660c7 100644 --- a/declarativeimports/plasmacomponents/platformcomponents/touch/Sheet.qml +++ b/declarativeimports/plasmacomponents/platformcomponents/touch/Sheet.qml @@ -114,8 +114,15 @@ Item { PlasmaCore.FrameSvgItem { id: dialog - anchors.fill: parent + anchors { + fill: parent + leftMargin: 50 + topMargin: 50 + rightMargin: 50 + bottomMargin: 0 + } imagePath: "dialogs/background" + enabledBorders: "LeftBorder|TopBorder|RightBorder" state: "closed"