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/ui/gui.go | |
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/ui/gui.go')
-rw-r--r-- | ethereal/ui/gui.go | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/ethereal/ui/gui.go b/ethereal/ui/gui.go index f3a918ea0..8845f6af3 100644 --- a/ethereal/ui/gui.go +++ b/ethereal/ui/gui.go @@ -90,11 +90,12 @@ func (gui *Gui) Start(assetPath string) { var win *qml.Window var err error + var addlog = false if len(data) == 0 { win, err = gui.showKeyImport(context) } else { win, err = gui.showWallet(context) - ethlog.AddLogSystem(gui) + addlog = true } if err != nil { logger.Errorln("asset not found: you can set an alternative asset path on the command line using option 'asset_path'", err) @@ -105,8 +106,13 @@ func (gui *Gui) Start(assetPath string) { logger.Infoln("Starting GUI") win.Show() + // only add the gui logger after window is shown otherwise slider wont be shown + if addlog { + ethlog.AddLogSystem(gui) + } win.Wait() - + // need to silence gui logger after window closed otherwise logsystem hangs + gui.SetLogLevel(ethlog.Silence) gui.eth.Stop() } @@ -353,6 +359,12 @@ func (gui *Gui) GetLogLevel() ethlog.LogLevel { return gui.logLevel } +// this extra function needed to give int typecast value to gui widget +// that sets initial loglevel to default +func (gui *Gui) GetLogLevelInt() int { + return int(gui.logLevel) +} + func (gui *Gui) Println(v ...interface{}) { gui.printLog(fmt.Sprintln(v...)) } |