mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: ensure delegate height is not a fraction
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
c1bcba46f0
commit
bb03bd862b
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ Kirigami.ScrollablePage {
|
|||
Item {
|
||||
id: diveListEntry
|
||||
width: parent.width - Kirigami.Units.gridUnit * (innerListItem.deleteButtonVisible ? 3 : 1)
|
||||
height: childrenRect.height + Kirigami.Units.smallSpacing
|
||||
height: Math.ceil(childrenRect.height + Kirigami.Units.smallSpacing)
|
||||
anchors.left: leftBarDive.right
|
||||
Controls.Label {
|
||||
id: locationText
|
||||
|
|
Loading…
Add table
Reference in a new issue