From 441e06cdb89d8c3be39a6a99d092a2b30d67dd0a Mon Sep 17 00:00:00 2001 From: Jan Mulder Date: Wed, 26 Sep 2018 15:05:25 +0200 Subject: [PATCH] mobile, QML UI: whitespace in dive details page There was a strange big margin at the top of the the dive details page. Just make it a bit more "normal". Signed-off-by: Jan Mulder --- mobile-widgets/qml/DiveDetails.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile-widgets/qml/DiveDetails.qml b/mobile-widgets/qml/DiveDetails.qml index 5fca950bc..2f8cf895a 100644 --- a/mobile-widgets/qml/DiveDetails.qml +++ b/mobile-widgets/qml/DiveDetails.qml @@ -55,7 +55,7 @@ Kirigami.Page { title: currentItem && currentItem.modelData ? currentItem.modelData.dive.location : qsTr("Dive details") state: "view" leftPadding: 0 - topPadding: Kirigami.Units.gridUnit * 2 // make room for the title bar + topPadding: Kirigami.Units.gridUnit / 2 rightPadding: 0 bottomPadding: 0 background: Rectangle { color: subsurfaceTheme.backgroundColor }