diff options
author | Marco Martin <notmart@gmail.com> | 2015-11-29 22:56:16 +0100 |
---|---|---|
committer | Sebastian Kügler <sebas@kde.org> | 2015-11-29 23:58:49 +0100 |
commit | 8e523329b686023d4ca69226daa5bf079035a02b (patch) | |
tree | 39773cb5b60cf09cf03e655af97a7b00444e18dd /qt-mobile/qml | |
parent | 8646934ba351e092089876a018a3e4886cc98794 (diff) | |
download | subsurface-8e523329b686023d4ca69226daa5bf079035a02b.tar.gz |
fix contents size
correct childrenRect mistakedly called contentRect
Signed-off-by: Marco Martin <notmart@gmail.com>
Diffstat (limited to 'qt-mobile/qml')
-rw-r--r-- | qt-mobile/qml/DiveDetails.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qml/DiveDetails.qml b/qt-mobile/qml/DiveDetails.qml index e69d0e672..c068ff498 100644 --- a/qt-mobile/qml/DiveDetails.qml +++ b/qt-mobile/qml/DiveDetails.qml @@ -36,7 +36,7 @@ MobileComponents.Page { Item { id: content width: flick.width - height: contentRect.height + MobileComponents.Units.smallSpacing * 2 + height: childrenRect.height + MobileComponents.Units.smallSpacing * 2 ColumnLayout { anchors { |