Add "(syncing)" after balance when syncing

Should cut down on people wondering why their balance is wrong
This commit is contained in:
moneromooo.monero
2016-12-31 13:47:40 +00:00
parent d8f9e7360f
commit 192bfc70b0
3 changed files with 12 additions and 2 deletions

View File

@@ -42,6 +42,7 @@ Rectangle {
property Item currentView
property Item previousView
property bool basicMode : false
property string balanceLabelText: qsTr("Balance")
property string balanceText
property string unlockedBalanceText
@@ -198,7 +199,7 @@ Rectangle {
columns: 3
Text {
id: balanceLabel
width: 116
height: 20
font.family: "Arial"
@@ -208,7 +209,7 @@ Rectangle {
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignBottom
color: "#535353"
text: qsTr("Balance:")
text: root.balanceLabelText + ":"
}
Text {