qml: Fix Frame's title bar not being visible

It was being covered by the stack layout
This commit is contained in:
Sergio Martins
2020-08-04 12:17:26 +01:00
parent a0588cd312
commit 1ad8a67caf

View File

@@ -63,7 +63,7 @@ Rectangle {
anchors {
left: parent.left
right: parent.right
top: tabbar.visible ? tabbar.bottom : parent.top
top: tabbar.visible ? tabbar.bottom : titleBar.bottom
bottom: parent.bottom
}