From 791daa67b1205ba0919e2a0fa6129ca7c5e4121d Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 17 Dec 2020 14:54:57 -0800 Subject: [PATCH] mobile/UI: remove the thick line between trips This took up a lot of space and made the UI look stodgy. Signed-off-by: Dirk Hohndel --- mobile-widgets/qml/DiveList.qml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index d6177cb19..71daf19fe 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -45,7 +45,7 @@ Kirigami.ScrollablePage { left: parent.left right: parent.right } - height: (isTrip ? 9 : 11) * Kirigami.Units.smallSpacing // delegateInnerItem.height + height: isTrip ? 1 + 8 * Kirigami.Units.smallSpacing : 11 * Kirigami.Units.smallSpacing // delegateInnerItem.height onSelectedChanged: { console.log("index " + index + " select changed to " + selected) @@ -135,17 +135,6 @@ Kirigami.ScrollablePage { color: subsurfaceTheme.lightPrimaryTextColor } } - Rectangle { - id: headingBottomLine - height: visible ? Kirigami.Units.smallSpacing : 0 - visible: headingBackground.visible - anchors { - left: parent.left - right: parent.right - top: headingBackground.bottom - } - color: "#B2B2B2" - } Rectangle { id: diveBackground