From 192bfc70b0a45ec93e6cbfe4b04afa9d41009c0d Mon Sep 17 00:00:00 2001 From: "moneromooo.monero" Date: Sat, 31 Dec 2016 13:47:40 +0000 Subject: Add "(syncing)" after balance when syncing Should cut down on people wondering why their balance is wrong --- MiddlePanel.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'MiddlePanel.qml') diff --git a/MiddlePanel.qml b/MiddlePanel.qml index b21da0c0..94ecc17e 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -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 { -- cgit v1.2.3