diff options
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index 1acc3970c..5c1633a2b 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -318,14 +318,10 @@ Kirigami.ScrollablePage { } } Rectangle { - height: Math.max(2, Kirigami.Units.gridUnit / 12) // we want a thicker line - anchors { - bottom: headingBackground.top - left: parent.left - rightMargin: Kirigami.Units.gridUnit * -2 - right: parent.right - } - color: subsurfaceTheme.lightPrimaryColor + height: section == "" ? 0 : 1 + width: parent.width + anchors.top: headingBackground.bottom + color: "#B2B2B2" } } } |