We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69c6e87 commit 04ec57dCopy full SHA for 04ec57d
src/qml/PathView.qml
@@ -11,9 +11,9 @@ ListView {
11
spacing: 6
12
header: Button {
13
width: parent.width
14
- height: pathView.count ? 40 : 0
+ height: pathView.count > 1 ? 40 : 0
15
Behavior on height { NumberAnimation { duration: 300; easing.type: Easing.InOutSine }}
16
- visible: pathView.count
+ visible: pathView.count > 1
17
highlighted: true
18
Text {
19
anchors.centerIn: parent
src/qml/main.qml
@@ -35,5 +35,6 @@ ApplicationWindow {
35
anchors.fill: parent
36
anchors.leftMargin: 4
37
anchors.rightMargin: 4
38
+ anchors.topMargin: 4
39
}
40
0 commit comments