diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-27 03:11:38 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-27 03:11:38 +0800 |
commit | d694e00a3340a36c39872950bb7a2404e9686c18 (patch) | |
tree | 51561264b897ae7b709447da0ab16a0b2962af80 /ethereal/ui/gui.go | |
parent | 26ecf4b7809ebf79d2923f0b661818a37271be33 (diff) | |
download | dexon-d694e00a3340a36c39872950bb7a2404e9686c18.tar dexon-d694e00a3340a36c39872950bb7a2404e9686c18.tar.gz dexon-d694e00a3340a36c39872950bb7a2404e9686c18.tar.bz2 dexon-d694e00a3340a36c39872950bb7a2404e9686c18.tar.lz dexon-d694e00a3340a36c39872950bb7a2404e9686c18.tar.xz dexon-d694e00a3340a36c39872950bb7a2404e9686c18.tar.zst dexon-d694e00a3340a36c39872950bb7a2404e9686c18.zip |
Fixed debugger
Diffstat (limited to 'ethereal/ui/gui.go')
-rw-r--r-- | ethereal/ui/gui.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/ui/gui.go b/ethereal/ui/gui.go index 8d6796ddb..1018d77ac 100644 --- a/ethereal/ui/gui.go +++ b/ethereal/ui/gui.go @@ -130,7 +130,7 @@ func (gui *Gui) createWindow(comp qml.Object) *qml.Window { gui.win = win gui.uiLib.win = win - db := &Debugger{gui.win, make(chan bool)} + db := &Debugger{gui.win, make(chan bool), true} gui.lib.Db = db gui.uiLib.Db = db |