diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-01-04 13:15:33 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-04 13:15:33 -0800 |
commit | 72ce77a5ee5127c374a56d3de741b808432b6ce5 (patch) | |
tree | fd395048d8c0f63ec6cbfb8d5760dc2707b9dd4a /qt-mobile/qml/mobilecomponents/Page.qml | |
parent | c53aa7dbfbb615e0aea28a414672882a86468cb3 (diff) | |
download | subsurface-72ce77a5ee5127c374a56d3de741b808432b6ce5.tar.gz |
QML UI: hide action button
So far this just comments out the code that enables the action button. Let's
see feedback from the testers.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/mobilecomponents/Page.qml')
-rw-r--r-- | qt-mobile/qml/mobilecomponents/Page.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-mobile/qml/mobilecomponents/Page.qml b/qt-mobile/qml/mobilecomponents/Page.qml index f55c24faa..fe36a034a 100644 --- a/qt-mobile/qml/mobilecomponents/Page.qml +++ b/qt-mobile/qml/mobilecomponents/Page.qml @@ -55,6 +55,7 @@ Rectangle { Layout.fillWidth: true color: "transparent" +/* Connections { target: flickable property real oldContentY: (flickable == null) ? 0 : flickable.contentY @@ -64,4 +65,5 @@ Rectangle { oldContentY = flickable.contentY; } } + */ } |