diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-31 01:36:05 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-31 01:36:05 +0800 |
commit | 0bdb0a9d58be08e210eb94dc6893f6103202ae7c (patch) | |
tree | 698d0741de1bc01510bbb98fdb42baa8aef690d1 /ethereal/assets | |
parent | 65c5a20e1c04c996f96f81cd959ab986b8482b6a (diff) | |
download | dexon-0bdb0a9d58be08e210eb94dc6893f6103202ae7c.tar.gz dexon-0bdb0a9d58be08e210eb94dc6893f6103202ae7c.tar.zst dexon-0bdb0a9d58be08e210eb94dc6893f6103202ae7c.zip |
Added ini file for ethereum. fixes #66
Diffstat (limited to 'ethereal/assets')
-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 } |