diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2013-05-12 23:50:43 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2013-05-12 23:50:43 +0200 |
commit | 76544a015e0db637e1328ad66da9bef3c50f8217 (patch) | |
tree | b0c936b1e63d2887a5b56602f0b577551ed47ac2 /metawatch/qml | |
parent | 25eecf940815db811f66256831a7b74a3b8ea9f7 (diff) | |
download | sowatch-76544a015e0db637e1328ad66da9bef3c50f8217.tar.gz sowatch-76544a015e0db637e1328ad66da9bef3c50f8217.zip |
fix scrollable again
Diffstat (limited to 'metawatch/qml')
-rw-r--r-- | metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml b/metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml index 1a48118..3b6c44e 100644 --- a/metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml +++ b/metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml @@ -10,8 +10,8 @@ Flickable { boundsBehavior: Flickable.StopAtBounds flickableDirection: Flickable.VerticalFlick - contentWidth: childrenRect.width - contentHeight: childrenRect.height + contentWidth: contentItem.childrenRect.width + contentHeight: contentItem.childrenRect.height function scrollDown() { console.log(contentHeight + " " + height); @@ -41,7 +41,7 @@ Flickable { contentY = 0; } - Rectangle { + children: Rectangle { id: indicatorCont visible: flickable.indicator && (flickable.contentHeight > flickable.height) anchors.top: parent.top |