diff options
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/DiveList.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-mobile/DiveList.qml b/qt-mobile/DiveList.qml index 3ba2de3c7..40507e26a 100644 --- a/qt-mobile/DiveList.qml +++ b/qt-mobile/DiveList.qml @@ -17,7 +17,7 @@ Rectangle { property real detailsOpacity : 0 width: diveListView.width - height: 70 + height: childrenRect.height //Bounded rect for the background Rectangle { @@ -38,11 +38,11 @@ Rectangle { //And other details at the bottom. Row { id: topLayout - x: 10; y: 10; height: 60; width: parent.width + x: 10; y: 10; height: childrenRect.height; width: parent.width spacing: 10 Column { - width: background.width; height: 60 + width: background.width; height: childrenRect.height * 1.1 spacing: 5 Text { |