summaryrefslogtreecommitdiff
path: root/metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml
diff options
context:
space:
mode:
Diffstat (limited to 'metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml')
-rw-r--r--metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml6
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