From db4273ee82e09952c85827bef4f74da06bd2d2bc Mon Sep 17 00:00:00 2001 From: xiphon Date: Wed, 14 Oct 2020 02:24:22 +0000 Subject: NetworkStatusItem: 'starting/stopping the node' status (no splash) --- components/NetworkStatusItem.qml | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'components') 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) -- cgit v1.2.3