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 | |
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')
-rw-r--r-- | qt-mobile/qml/mobilecomponents/ApplicationWindow.qml | 2 | ||||
-rw-r--r-- | qt-mobile/qml/mobilecomponents/Page.qml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml b/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml index ce5d02abd..76662f549 100644 --- a/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml +++ b/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml @@ -72,6 +72,7 @@ ApplicationWindow { width: Units.gridUnit * 25 height: Units.gridUnit * 30 +/* property alias actionButton: __actionButton ActionButton { id: __actionButton @@ -82,4 +83,5 @@ ApplicationWindow { visible: root.globalDrawer || root.contextDrawer } + */ } 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; } } + */ } |