show processingSplash when starting/stopping daemon

This commit is contained in:
Jaquee
2016-11-26 11:31:27 +01:00
parent 8361dda994
commit bb881d9aef
2 changed files with 11 additions and 2 deletions

View File

@@ -325,6 +325,15 @@ ApplicationWindow {
onWalletUpdate();
}
function startDaemon(){
appWindow.showProcessingSplash(qsTr("Waiting for daemon to start..."))
daemonManager.start();
}
function stopDaemon(){
appWindow.showProcessingSplash(qsTr("Waiting for daemon to stop..."))
daemonManager.stop();
}
function onDaemonStarted(){
console.log("daemon started");
daemonRunning = true;