aboutsummaryrefslogtreecommitdiff
path: root/LeftPanel.qml
diff options
context:
space:
mode:
authormoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-07 12:02:27 +0000
committermoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-07 12:02:27 +0000
commit689f0415e7e0d47b765b18d370fc6c2cf1edb990 (patch)
tree64f2c184da402463f7a09cea965ae39c79f4ea25 /LeftPanel.qml
parentc9bb2f571895edb6a01ca5528c944d09bc222823 (diff)
downloadmonzero-gui-689f0415e7e0d47b765b18d370fc6c2cf1edb990.tar.gz
monzero-gui-689f0415e7e0d47b765b18d370fc6c2cf1edb990.tar.xz
monzero-gui-689f0415e7e0d47b765b18d370fc6c2cf1edb990.zip
Report when the GUI is connected to a daemon with mismatched version
This will cause various errors confusing to the user, as they stem for the daemon returning replies with missing information, etc.
Diffstat (limited to 'LeftPanel.qml')
-rw-r--r--LeftPanel.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml
index 6aeacdfd..cf2b3722 100644
--- a/LeftPanel.qml
+++ b/LeftPanel.qml
@@ -28,6 +28,7 @@
import QtQuick 2.2
import QtGraphicalEffects 1.0
+import moneroComponents.Wallet 1.0
import "components"
Rectangle {
@@ -356,7 +357,7 @@ Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: (daemonProgress.visible)? daemonProgress.top : parent.bottom;
- connected: false
+ connected: Wallet.ConnectionStatus_Disconnected
}
DaemonProgress {