aboutsummaryrefslogtreecommitdiff
path: root/components/NetworkStatusItem.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/NetworkStatusItem.qml')
-rw-r--r--components/NetworkStatusItem.qml7
1 files changed, 6 insertions, 1 deletions
diff --git a/components/NetworkStatusItem.qml b/components/NetworkStatusItem.qml
index 965948bd..a1994398 100644
--- a/components/NetworkStatusItem.qml
+++ b/components/NetworkStatusItem.qml
@@ -47,8 +47,13 @@ Rectangle {
}
if (status == Wallet.ConnectionStatus_WrongVersion)
return qsTr("Wrong version")
- if (status == Wallet.ConnectionStatus_Disconnected)
+ if (status == Wallet.ConnectionStatus_Disconnected){
+ if(appWindow.walletMode <= 1){
+ return qsTr("Searching node") + translationManager.emptyString;
+ }
return qsTr("Disconnected")
+ }
+
return qsTr("Invalid connection status")
}