diff options
Diffstat (limited to 'mobile-widgets/qml/DiveList.qml')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index dd5336f85..26ed8432f 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -27,6 +27,7 @@ Kirigami.ScrollablePage { supportsMouseEvents: true checked: diveListView.currentIndex === model.index width: parent.width + height: diveListEntry.height + Kirigami.Units.smallSpacing property real detailsOpacity : 0 property int horizontalPadding: Kirigami.Units.gridUnit / 2 - Kirigami.Units.smallSpacing + 1 @@ -49,9 +50,7 @@ Kirigami.ScrollablePage { Row { width: parent.width - height: childrenRect.height + Kirigami.Units.smallSpacing spacing: horizontalPadding - add: Transition { NumberAnimation { property: "opacity"; from: 0; to: 1.0; duration: 400 } NumberAnimation { property: "scale"; from: 0; to: 1.0; duration: 400 } @@ -72,6 +71,7 @@ Kirigami.ScrollablePage { left: parent.left leftMargin: horizontalPadding top: parent.top + topMargin: - Kirigami.Units.smallSpacing * 2 right: parent.right } } @@ -80,6 +80,7 @@ Kirigami.ScrollablePage { left: locationText.left top: locationText.bottom topMargin: - Kirigami.Units.smallSpacing * 2 + bottom: numberText.bottom } Kirigami.Label { |