diff options
author | zelig <viktor.tron@gmail.com> | 2014-07-04 00:35:48 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-07-04 00:35:48 +0800 |
commit | a3c482351114404a4568f4b3f4503182402dc6fd (patch) | |
tree | 3fb9e2fa5e12ba662d19b9ddacdbdc4869effaff /ethereal/assets | |
parent | a0dd1ebb6d7b449982602c796172405e7946581c (diff) | |
download | go-tangerine-a3c482351114404a4568f4b3f4503182402dc6fd.tar go-tangerine-a3c482351114404a4568f4b3f4503182402dc6fd.tar.gz go-tangerine-a3c482351114404a4568f4b3f4503182402dc6fd.tar.bz2 go-tangerine-a3c482351114404a4568f4b3f4503182402dc6fd.tar.lz go-tangerine-a3c482351114404a4568f4b3f4503182402dc6fd.tar.xz go-tangerine-a3c482351114404a4568f4b3f4503182402dc6fd.tar.zst go-tangerine-a3c482351114404a4568f4b3f4503182402dc6fd.zip |
Gui saves custom client id and loglevel
- gui NewWindow takes SimpleClientIdentity as argument
- gui NewWindow takes ethutil.ConfigManager as argument to manage flag persistence
- gui now saves loglevel and custom client id via config.Save
- rename custom client id methods consistently also in wallet.qml
- clientIdentifier now set in main wrappers
- version handled within wrapper
- modify InitConfig now returning *ethutil.ConfigManager (passed to gui)
Diffstat (limited to 'ethereal/assets')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index 628d9f96a..4b252f200 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -248,9 +248,9 @@ ApplicationWindow { text: "Client ID" } TextField { - text: eth.clientId() + text: eth.getCustomIdentifier() onTextChanged: { - eth.changeClientId(text) + eth.setCustomIdentifier(text) } } } |