diff options
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 13 |
1 files changed, 1 insertions, 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 |