diff options
author | Sebastian Kügler <sebas@kde.org> | 2015-11-29 18:56:21 +0100 |
---|---|---|
committer | Sebastian Kügler <sebas@kde.org> | 2015-11-29 18:57:50 +0100 |
commit | 5e5c9830a48e8f9c0a376863b4fa17c7f5056af3 (patch) | |
tree | 2f2c8f89ce8c3cecad6b9f4279d94106b5cbe41d /qt-mobile/qml/mobilecomponents/Page.qml | |
parent | 6ffef818a8d34fdc8aef70c3515c2b91d8d297ac (diff) | |
download | subsurface-5e5c9830a48e8f9c0a376863b4fa17c7f5056af3.tar.gz |
Sync with upstream mobilecomponents
This updates to the state of bf7914b67c45e
Signed-off-by: Sebastian Kügler <sebas@kde.org>
Diffstat (limited to 'qt-mobile/qml/mobilecomponents/Page.qml')
-rw-r--r-- | qt-mobile/qml/mobilecomponents/Page.qml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/qt-mobile/qml/mobilecomponents/Page.qml b/qt-mobile/qml/mobilecomponents/Page.qml index 53cb04e2a..43ec43a49 100644 --- a/qt-mobile/qml/mobilecomponents/Page.qml +++ b/qt-mobile/qml/mobilecomponents/Page.qml @@ -59,10 +59,6 @@ Rectangle { target: flickable property real oldContentY: flickable.contentY onContentYChanged: { - print(flickable.contentY+" "+actionButton.transform[0] ) - if (flickable.atYBeginning || flickable.atYEnd) { - return; - } actionButton.transform[0].y = Math.min(actionButton.height, Math.max(0, actionButton.transform[0].y + (flickable.contentY - oldContentY))); oldContentY = flickable.contentY; |