aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/wallet.qml
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-07-04 00:35:48 +0800
committerzelig <viktor.tron@gmail.com>2014-07-04 00:35:48 +0800
commita3c482351114404a4568f4b3f4503182402dc6fd (patch)
tree3fb9e2fa5e12ba662d19b9ddacdbdc4869effaff /ethereal/assets/qml/wallet.qml
parenta0dd1ebb6d7b449982602c796172405e7946581c (diff)
downloaddexon-a3c482351114404a4568f4b3f4503182402dc6fd.tar.gz
dexon-a3c482351114404a4568f4b3f4503182402dc6fd.tar.zst
dexon-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/qml/wallet.qml')
-rw-r--r--ethereal/assets/qml/wallet.qml4
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)
}
}
}