mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: DiveList: turn the color blob into a thin line
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
fc4153f8ac
commit
c775fcebec
1 changed files with 5 additions and 7 deletions
|
@ -53,17 +53,15 @@ Kirigami.ScrollablePage {
|
||||||
Item {
|
Item {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: leftBarDive
|
id: leftBarDive
|
||||||
width: dive.tripMeta == "" ? 0 : Kirigami.Units.gridUnit
|
width: dive.tripMeta == "" ? 0 : Kirigami.Units.smallSpacing
|
||||||
height: Kirigami.Units.gridUnit
|
height: diveListEntry.height * 0.8
|
||||||
color: subsurfaceTheme.accentColor
|
color: subsurfaceTheme.accentColor
|
||||||
antialiasing: true
|
|
||||||
radius: Kirigami.Units.smallSpacing * 2
|
|
||||||
anchors {
|
anchors {
|
||||||
left: parent.left
|
left: parent.left
|
||||||
top: parent.top
|
top: parent.top
|
||||||
topMargin: Kirigami.Units.gridUnit
|
leftMargin: Kirigami.Units.smallSpacing
|
||||||
bottomMargin: Kirigami.Units.gridUnit
|
topMargin: Kirigami.Units.smallSpacing * 2
|
||||||
leftMargin: Kirigami.Units.smallSpacing * 2
|
bottomMargin: Kirigami.Units.smallSpacing * 2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Item {
|
Item {
|
||||||
|
|
Loading…
Add table
Reference in a new issue