diff --git a/client/ui/qml/Pages/InstallSettings/SelectContainer.qml b/client/ui/qml/Pages/InstallSettings/SelectContainer.qml index d48e223e..2581ea74 100644 --- a/client/ui/qml/Pages/InstallSettings/SelectContainer.qml +++ b/client/ui/qml/Pages/InstallSettings/SelectContainer.qml @@ -11,8 +11,6 @@ Drawer { signal containerSelected(int c_index) property int selectedIndex: -1 - z: -3 - y: 0 x: 0 edge: Qt.RightEdge @@ -117,6 +115,7 @@ Drawer { MouseArea { anchors.fill: parent + cursorShape: Qt.PointingHandCursor onClicked: { tb.currentIndex = index tb_other.currentIndex = -1 @@ -181,6 +180,7 @@ Drawer { MouseArea { anchors.fill: parent + cursorShape: Qt.PointingHandCursor onClicked: { tb_other.currentIndex = index tb.currentIndex = -1 diff --git a/client/ui/qml/Pages/PageServerContainers.qml b/client/ui/qml/Pages/PageServerContainers.qml index 5245554d..b1a0b2ad 100644 --- a/client/ui/qml/Pages/PageServerContainers.qml +++ b/client/ui/qml/Pages/PageServerContainers.qml @@ -45,7 +45,7 @@ PageBase { pageLoader.focus = true } - onContainerSelected: { + onContainerSelected: function(c_index) { var containerProto = ContainerProps.defaultProtocol(c_index) diff --git a/client/ui/qml/main.qml b/client/ui/qml/main.qml index f2527267..1e190d02 100644 --- a/client/ui/qml/main.qml +++ b/client/ui/qml/main.qml @@ -285,7 +285,6 @@ Window { Drawer { id: drawer_log - z: -3 y: 0 x: 0 edge: Qt.BottomEdge