diff options
| author | xiphon <xiphon@protonmail.com> | 2020-10-14 02:24:22 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2020-10-14 02:26:56 +0000 |
| commit | db4273ee82e09952c85827bef4f74da06bd2d2bc (patch) | |
| tree | a2f66defdd7722eedb122540f2eb5994554185e0 /components | |
| parent | cb1f3ad0ce228b9c272df76838754e303b074a32 (diff) | |
| download | monzero-gui-db4273ee82e09952c85827bef4f74da06bd2d2bc.tar.gz monzero-gui-db4273ee82e09952c85827bef4f74da06bd2d2bc.tar.xz monzero-gui-db4273ee82e09952c85827bef4f74da06bd2d2bc.zip | |
NetworkStatusItem: 'starting/stopping the node' status (no splash)
Diffstat (limited to 'components')
| -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) |
