diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-12-31 13:47:40 +0000 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-12-31 13:47:40 +0000 |
| commit | 192bfc70b0a45ec93e6cbfe4b04afa9d41009c0d (patch) | |
| tree | d2b3f0172824859a3b6fe7f0454d26a33022b3db /MiddlePanel.qml | |
| parent | d8f9e7360fdbab910283c465aafe36149b1d7f26 (diff) | |
| download | monzero-gui-192bfc70b0a45ec93e6cbfe4b04afa9d41009c0d.tar.gz monzero-gui-192bfc70b0a45ec93e6cbfe4b04afa9d41009c0d.tar.xz monzero-gui-192bfc70b0a45ec93e6cbfe4b04afa9d41009c0d.zip | |
Add "(syncing)" after balance when syncing
Should cut down on people wondering why their balance is wrong
Diffstat (limited to 'MiddlePanel.qml')
| -rw-r--r-- | MiddlePanel.qml | 5 |
1 files changed, 3 insertions, 2 deletions
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 { |
