LeftPanel: NetworkStatusItem fixed at bottom left corner

pull/2/head
rating89us 4 years ago
parent b73551d6ab
commit b6d554eebd

@ -348,7 +348,7 @@ Rectangle {
id:flicker id:flicker
contentHeight: menuColumn.height contentHeight: menuColumn.height
anchors.top: parent.top anchors.top: parent.top
anchors.bottom: networkStatus.top anchors.bottom: progressBar.visible ? progressBar.top : networkStatus.top
width: parent.width width: parent.width
boundsBehavior: isMac ? Flickable.DragAndOvershootBounds : Flickable.StopAtBounds boundsBehavior: isMac ? Flickable.DragAndOvershootBounds : Flickable.StopAtBounds
clip: true clip: true
@ -644,22 +644,11 @@ Rectangle {
anchors.right: parent.right anchors.right: parent.right
anchors.leftMargin: 0 anchors.leftMargin: 0
anchors.rightMargin: 0 anchors.rightMargin: 0
anchors.bottom: networkStatus.top; anchors.bottom: progressBar.visible ? progressBar.top : networkStatus.top
height: 10 height: 10
color: "transparent" color: "transparent"
} }
MoneroComponents.NetworkStatusItem {
id: networkStatus
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 5
anchors.rightMargin: 0
anchors.bottom: (progressBar.visible)? progressBar.top : parent.bottom;
connected: Wallet.ConnectionStatus_Disconnected
height: 48
}
MoneroComponents.ProgressBar { MoneroComponents.ProgressBar {
id: progressBar id: progressBar
anchors.left: parent.left anchors.left: parent.left
@ -674,10 +663,22 @@ Rectangle {
id: daemonProgressBar id: daemonProgressBar
anchors.left: parent.left anchors.left: parent.left
anchors.right: parent.right anchors.right: parent.right
anchors.bottom: parent.bottom anchors.bottom: networkStatus.top
syncType: qsTr("Daemon") + translationManager.emptyString syncType: qsTr("Daemon") + translationManager.emptyString
visible: networkStatus.connected visible: networkStatus.connected
height: 62 height: 62
} }
MoneroComponents.NetworkStatusItem {
id: networkStatus
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 5
anchors.rightMargin: 0
anchors.bottom: parent.bottom
anchors.bottomMargin: 5
connected: Wallet.ConnectionStatus_Disconnected
height: 48
}
} }
} }