mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +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
|
width: Units.gridUnit * 25
|
||||||
height: Units.gridUnit * 30
|
height: Units.gridUnit * 30
|
||||||
|
|
||||||
|
/*
|
||||||
property alias actionButton: __actionButton
|
property alias actionButton: __actionButton
|
||||||
ActionButton {
|
ActionButton {
|
||||||
id: __actionButton
|
id: __actionButton
|
||||||
|
@ -82,4 +83,5 @@ ApplicationWindow {
|
||||||
|
|
||||||
visible: root.globalDrawer || root.contextDrawer
|
visible: root.globalDrawer || root.contextDrawer
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,6 +55,7 @@ Rectangle {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
|
|
||||||
|
/*
|
||||||
Connections {
|
Connections {
|
||||||
target: flickable
|
target: flickable
|
||||||
property real oldContentY: (flickable == null) ? 0 : flickable.contentY
|
property real oldContentY: (flickable == null) ? 0 : flickable.contentY
|
||||||
|
@ -64,4 +65,5 @@ Rectangle {
|
||||||
oldContentY = flickable.contentY;
|
oldContentY = flickable.contentY;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue