mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
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>
This commit is contained in:
parent
c53aa7dbfb
commit
72ce77a5ee
2 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue