From 36a6b89b540020957eb59e1b57bf6186e180afcb Mon Sep 17 00:00:00 2001 From: Jaquee Date: Sat, 26 Nov 2016 15:50:04 +0100 Subject: [PATCH] connect onWalletConnectionStatusChanged() --- main.qml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/main.qml b/main.qml index d0c77338..97b9934d 100644 --- a/main.qml +++ b/main.qml @@ -213,6 +213,7 @@ ApplicationWindow { currentWallet.moneySpent.disconnect(onWalletMoneySent) currentWallet.moneyReceived.disconnect(onWalletMoneyReceived) currentWallet.transactionCreated.disconnect(onTransactionCreated) + currentWallet.connectionStatusChanged.disconnect(onWalletConnectionStatusChanged) currentWallet.refreshed.connect(onWalletRefresh) currentWallet.updated.connect(onWalletUpdate) @@ -220,6 +221,7 @@ ApplicationWindow { currentWallet.moneySpent.connect(onWalletMoneySent) currentWallet.moneyReceived.connect(onWalletMoneyReceived) currentWallet.transactionCreated.connect(onTransactionCreated) + currentWallet.connectionStatusChanged.connect(onWalletConnectionStatusChanged) console.log("initializing with daemon address: ", persistentSettings.daemon_address) @@ -233,6 +235,11 @@ ApplicationWindow { return wallet_path; } + function onWalletConnectionStatusChanged(){ + console.log("Wallet connection status changed") + middlePanel.updateStatus(); + } + function onWalletOpened(wallet) { console.log(">>> wallet opened: " + wallet) if (wallet.status !== Wallet.Status_Ok) {