diff options
Diffstat (limited to 'metawatch/qml/com/javispedro')
-rw-r--r-- | metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml b/metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml index 3b6c44e..4d5d477 100644 --- a/metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml +++ b/metawatch/qml/com/javispedro/sowatch/metawatch/MWScrollable.qml @@ -14,11 +14,8 @@ Flickable { contentHeight: contentItem.childrenRect.height function scrollDown() { - console.log(contentHeight + " " + height); - console.log(childrenRect.height); var maxY = Math.max(0, contentHeight - height); var newContentY = contentY + 96/3; - console.log(maxY + " " + newContentY); if (newContentY > maxY) { contentY = maxY; // Never overscroll. |