mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 06:15:26 +00:00
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 <dirk@hohndel.org>
This commit is contained in:
parent
3ecedbf018
commit
791daa67b1
1 changed files with 1 additions and 12 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue