diff options
Diffstat (limited to 'components/NetworkStatusItem.qml')
| -rw-r--r-- | components/NetworkStatusItem.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/components/NetworkStatusItem.qml b/components/NetworkStatusItem.qml index 05fb55d1..432b7a65 100644 --- a/components/NetworkStatusItem.qml +++ b/components/NetworkStatusItem.qml @@ -39,6 +39,15 @@ Rectangle { property var connected: Wallet.ConnectionStatus_Disconnected function getConnectionStatusString(status) { + switch (appWindow.daemonStartStopInProgress) + { + case 1: + return qsTr("Starting the node"); + case 2: + return qsTr("Stopping the node"); + default: + break; + } switch (status) { case Wallet.ConnectionStatus_Connected: if (!appWindow.daemonSynced) |
