diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-26 19:13:31 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-26 19:13:31 +0800 |
commit | c0a05fcf8984f04f198c5c0f8be4f73090f99403 (patch) | |
tree | c279b9ffffa2ac76627c2178f4cdc936406589c6 /ethereal/assets/qml | |
parent | 2f96652bb408e65c205317403d749ba9a395c6bb (diff) | |
download | dexon-c0a05fcf8984f04f198c5c0f8be4f73090f99403.tar.gz dexon-c0a05fcf8984f04f198c5c0f8be4f73090f99403.tar.zst dexon-c0a05fcf8984f04f198c5c0f8be4f73090f99403.zip |
log slider
- only add the gui logger after window is shown otherwise slider wont be shown
- need to silence gui logger after window closed otherwise logsystem hangs
- gui.GetLogLevelInt() extra function needed to give correcty int typecast value to gui widget that sets initial loglevel to default
Diffstat (limited to 'ethereal/assets/qml')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index eb3aa6df5..84f8fd5cf 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -319,7 +319,7 @@ ApplicationWindow { Slider { id: logLevelSlider - value: eth.getLogLevel() + value: eth.getLogLevelInt() anchors { right: parent.right top: parent.top |