aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2017-03-03 12:30:53 +0100
committerJaquee <jaquee.monero@gmail.com>2017-03-03 12:30:53 +0100
commit2ea54a24018af38e03141229e3f2ff45eaaa9590 (patch)
treebc90dcc55837df67bec18710d69c70d225dba147
parente826f7c1ecdcdc1e588e67b07278f7433cd867eb (diff)
downloadmonzero-gui-2ea54a24018af38e03141229e3f2ff45eaaa9590.tar.gz
monzero-gui-2ea54a24018af38e03141229e3f2ff45eaaa9590.tar.xz
monzero-gui-2ea54a24018af38e03141229e3f2ff45eaaa9590.zip
adjust unlocked balance waiting text
-rw-r--r--main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.qml b/main.qml
index 83e294ec..a1386e66 100644
--- a/main.qml
+++ b/main.qml
@@ -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");
}
}