Update balance label when mining

This commit is contained in:
obscuren
2015-02-13 18:15:23 +01:00
parent 0f3c25b265
commit ce239333d5
4 changed files with 18 additions and 2 deletions

View File

@ -15,6 +15,17 @@ Rectangle {
objectName: "walletView"
anchors.fill: parent
Label {
objectName: "balanceLabel"
visible: false
font.pixelSize: 10
anchors.right: lastBlockLabel.left
anchors.rightMargin: 5
onTextChanged: {
menuItem.secondaryTitle = text
}
}
function onReady() {
setBalance()
}