aboutsummaryrefslogtreecommitdiff
path: root/LeftPanel.qml
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2020-01-28 04:43:31 +0000
committerxiphon <xiphon@protonmail.com>2020-01-28 05:11:29 +0000
commit6940390a5e0f07914695a11a12dd12b0cff395f1 (patch)
tree7ae8c44c1a1c856b5d24ebe751066d9e550cd81b /LeftPanel.qml
parent6de8547047d5801181b61cbbc707a44a4ee5e77b (diff)
downloadmonzero-gui-6940390a5e0f07914695a11a12dd12b0cff395f1.tar.gz
monzero-gui-6940390a5e0f07914695a11a12dd12b0cff395f1.tar.xz
monzero-gui-6940390a5e0f07914695a11a12dd12b0cff395f1.zip
Wallet: implement 'Connecting' status, add 'disconnected' property
Diffstat (limited to 'LeftPanel.qml')
-rw-r--r--LeftPanel.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml
index f7f119ec..18c19d56 100644
--- a/LeftPanel.qml
+++ b/LeftPanel.qml
@@ -667,7 +667,7 @@ Rectangle {
anchors.bottom: daemonProgressBar.top
height: 48
syncType: qsTr("Wallet") + translationManager.emptyString
- visible: networkStatus.connected
+ visible: !appWindow.disconnected
}
MoneroComponents.ProgressBar {
@@ -676,7 +676,7 @@ Rectangle {
anchors.right: parent.right
anchors.bottom: parent.bottom
syncType: qsTr("Daemon") + translationManager.emptyString
- visible: networkStatus.connected
+ visible: !appWindow.disconnected
height: 62
}
}