diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-31 01:36:21 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-31 01:36:21 +0800 |
commit | 4dfce5d347715e58ec6f2b291eaa0c4ca3e0d68b (patch) | |
tree | 698d0741de1bc01510bbb98fdb42baa8aef690d1 /ethereal/assets/qml/wallet.qml | |
parent | 5f28013f7937cf2264ec646bdc04bc55f26bad77 (diff) | |
parent | 0bdb0a9d58be08e210eb94dc6893f6103202ae7c (diff) | |
download | go-tangerine-4dfce5d347715e58ec6f2b291eaa0c4ca3e0d68b.tar go-tangerine-4dfce5d347715e58ec6f2b291eaa0c4ca3e0d68b.tar.gz go-tangerine-4dfce5d347715e58ec6f2b291eaa0c4ca3e0d68b.tar.bz2 go-tangerine-4dfce5d347715e58ec6f2b291eaa0c4ca3e0d68b.tar.lz go-tangerine-4dfce5d347715e58ec6f2b291eaa0c4ca3e0d68b.tar.xz go-tangerine-4dfce5d347715e58ec6f2b291eaa0c4ca3e0d68b.tar.zst go-tangerine-4dfce5d347715e58ec6f2b291eaa0c4ca3e0d68b.zip |
Merge branch 'develop'
Diffstat (limited to 'ethereal/assets/qml/wallet.qml')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 37 |
1 files changed, 22 insertions, 15 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index 458ce90e4..bbb147d89 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -221,23 +221,30 @@ ApplicationWindow { color: "#00000000" anchors.fill: parent - Label { - id: addressLabel - text: "Address" - anchors { - margins: 5 - top: parent.top - left: parent.left + Column { + spacing: 3 + anchors.fill: parent + anchors.topMargin: 5 + anchors.leftMargin: 5 + + Label { + id: addressLabel + text: "Address" } - } - TextField { - anchors { - margins: 5 - left: addressLabel.right - top: parent.top + TextField { + text: pub.getKey().address + width: 500 + } + + Label { + text: "Client ID" + } + TextField { + text: eth.clientId() + onTextChanged: { + eth.changeClientId(text) + } } - text: pub.getKey().address - width: 500 } |