diff options
author | obscuren <geffobscura@gmail.com> | 2014-04-12 12:12:10 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-04-12 12:12:10 +0800 |
commit | ce43a9500f38bae426eef6c3c9d33e006c32c26d (patch) | |
tree | dff150cff9a2b55b1e3dae7128e67893d3f198c8 /ethereal/ui/gui.go | |
parent | 710bbed1a2c508bcfa48f9a56b55342d4cdc9971 (diff) | |
download | dexon-ce43a9500f38bae426eef6c3c9d33e006c32c26d.tar.gz dexon-ce43a9500f38bae426eef6c3c9d33e006c32c26d.tar.zst dexon-ce43a9500f38bae426eef6c3c9d33e006c32c26d.zip |
Debug steps
Diffstat (limited to 'ethereal/ui/gui.go')
-rw-r--r-- | ethereal/ui/gui.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ethereal/ui/gui.go b/ethereal/ui/gui.go index fa4a5c833..d6510bbb6 100644 --- a/ethereal/ui/gui.go +++ b/ethereal/ui/gui.go @@ -113,10 +113,12 @@ func (ui *Gui) Start(assetPath string) { ethutil.Config.Log.Infoln("FATAL: asset not found: you can set an alternative asset path on on the command line using option 'asset_path'") panic(err) } - ui.engine.LoadFile(uiLib.AssetPath("qml/transactions.qml")) ui.win = component.CreateWindow(nil) uiLib.win = ui.win + db := &Debugger{ui.win, make(chan bool)} + ui.lib.Db = db + uiLib.Db = db // Register the ui as a block processor //ui.eth.BlockManager.SecondaryBlockProcessor = ui |