diff options
| author | Alexander Blair <snipa@jagtech.io> | 2020-10-19 00:10:19 -0700 |
|---|---|---|
| committer | Alexander Blair <snipa@jagtech.io> | 2020-10-19 00:10:19 -0700 |
| commit | 1f9d60602a0db64a9bb1f7e341a4a25a3b09e065 (patch) | |
| tree | 0c4ffc219a495cd60248ab2afb631c5f99d22145 /components | |
| parent | 7a285b36139e4564c17e31e18e49459f649b1081 (diff) | |
| parent | db4273ee82e09952c85827bef4f74da06bd2d2bc (diff) | |
| download | monzero-gui-1f9d60602a0db64a9bb1f7e341a4a25a3b09e065.tar.gz monzero-gui-1f9d60602a0db64a9bb1f7e341a4a25a3b09e065.tar.xz monzero-gui-1f9d60602a0db64a9bb1f7e341a4a25a3b09e065.zip | |
Merge pull request #3155
db4273ee NetworkStatusItem: 'starting/stopping the node' status (no splash) (xiphon)
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) |
