diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-10-09 01:32:03 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-10-10 00:25:56 +0300 |
| commit | 7ed623e6d9c8eabcc3caefb381fea54d7c50b858 (patch) | |
| tree | 33b5a79d2cddbb6c94da31f00492dd09adf40fc6 /main.qml | |
| parent | eafcf71382ad26e6e4be959405ae0701bc1ce0c9 (diff) | |
| download | monzero-gui-7ed623e6d9c8eabcc3caefb381fea54d7c50b858.tar.gz monzero-gui-7ed623e6d9c8eabcc3caefb381fea54d7c50b858.tar.xz monzero-gui-7ed623e6d9c8eabcc3caefb381fea54d7c50b858.zip | |
Basic mode: updating balance properly
Diffstat (limited to 'main.qml')
| -rw-r--r-- | main.qml | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -230,9 +230,8 @@ ApplicationWindow { function onWalletUpdate() { console.log(">>> wallet updated") -// basicPanel.unlockedBalanceText = leftPanel.unlockedBalanceText = -// walletManager.displayAmount(currentWallet.unlockedBalance); -// basicPanel.balanceText = leftPanel.balanceText = walletManager.displayAmount(currentWallet.balance); + middlePanel.unlockedBalanceText = leftPanel.unlockedBalanceText = walletManager.displayAmount(currentWallet.unlockedBalance); + middlePanel.balanceText = leftPanel.balanceText = walletManager.displayAmount(currentWallet.balance); } function onWalletRefresh() { |
