NetworkStatusItem: 'starting/stopping the node' status (no splash)

This commit is contained in:
xiphon
2020-10-14 02:24:22 +00:00
parent cb1f3ad0ce
commit db4273ee82
2 changed files with 24 additions and 14 deletions

View File

@@ -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)