diff options
Diffstat (limited to 'ethereal/assets/qml/views/wallet.qml')
-rw-r--r-- | ethereal/assets/qml/views/wallet.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereal/assets/qml/views/wallet.qml b/ethereal/assets/qml/views/wallet.qml index b626ff678..5e10a7022 100644 --- a/ethereal/assets/qml/views/wallet.qml +++ b/ethereal/assets/qml/views/wallet.qml @@ -9,14 +9,14 @@ import Ethereum 1.0 Rectangle { id: root property var title: "Wallet" - property var iconFile: "../wallet.png" + property var iconSource: "../wallet.png" property var menuItem objectName: "walletView" anchors.fill: parent function onReady() { - menuItem.secondary = eth.numberToHuman(eth.balanceAt(eth.key().address)) + menuItem.secondaryTitle = eth.numberToHuman(eth.balanceAt(eth.key().address)) } ListModel { |