diff options
Diffstat (limited to 'qt-mobile/qml/mobilecomponents/Page.qml')
-rw-r--r-- | qt-mobile/qml/mobilecomponents/Page.qml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/qt-mobile/qml/mobilecomponents/Page.qml b/qt-mobile/qml/mobilecomponents/Page.qml index fe36a034a..449c7aa47 100644 --- a/qt-mobile/qml/mobilecomponents/Page.qml +++ b/qt-mobile/qml/mobilecomponents/Page.qml @@ -47,23 +47,10 @@ Rectangle { */ property alias contextualActions: internalContextualActions.data - property Flickable flickable Item { id: internalContextualActions } Layout.fillWidth: true color: "transparent" - -/* - Connections { - target: flickable - property real oldContentY: (flickable == null) ? 0 : flickable.contentY - onContentYChanged: { - actionButton.transform[0].y = Math.min(actionButton.height, Math.max(0, actionButton.transform[0].y + (flickable.contentY - oldContentY))); - - oldContentY = flickable.contentY; - } - } - */ } |