mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
main: fix warning
This commit is contained in:
parent
46227bdad0
commit
24ac001daa
1 changed files with 1 additions and 1 deletions
2
main.qml
2
main.qml
|
@ -680,7 +680,7 @@ ApplicationWindow {
|
|||
console.log(">>> wallet refreshed")
|
||||
|
||||
// Daemon connected
|
||||
leftPanel.networkStatus.connected = currentWallet.connected()
|
||||
leftPanel.networkStatus.connected = currentWallet ? currentWallet.connected() : Wallet.ConnectionStatus_Disconnected
|
||||
|
||||
currentWallet.refreshHeightAsync();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue