diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-03-03 12:30:53 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-03-03 12:30:53 +0100 |
| commit | 2ea54a24018af38e03141229e3f2ff45eaaa9590 (patch) | |
| tree | bc90dcc55837df67bec18710d69c70d225dba147 | |
| parent | e826f7c1ecdcdc1e588e67b07278f7433cd867eb (diff) | |
| download | monzero-gui-2ea54a24018af38e03141229e3f2ff45eaaa9590.tar.gz monzero-gui-2ea54a24018af38e03141229e3f2ff45eaaa9590.tar.xz monzero-gui-2ea54a24018af38e03141229e3f2ff45eaaa9590.zip | |
adjust unlocked balance waiting text
| -rw-r--r-- | main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -335,7 +335,7 @@ ApplicationWindow { console.log("New block found - updating history") currentWallet.history.refresh() timeToUnlock = currentWallet.history.minutesToUnlock - leftPanel.minutesToUnlockTxt = (timeToUnlock > 0)? qsTr("Unlocked balance (~%1 min)").arg(timeToUnlock) : qsTr("Unlocked balance"); + leftPanel.minutesToUnlockTxt = (timeToUnlock > 0)? (timeToUnlock == 20)? qsTr("Unlocked balance (waiting for block)").arg(timeToUnlock) : qsTr("Unlocked balance (~%1 min)").arg(timeToUnlock) : qsTr("Unlocked balance"); } } |
