Minor UI changes

* Moved log from block view
* Prepend instead of append for logs
This commit is contained in:
obscuren
2014-05-29 12:24:14 +02:00
parent 8ee6574d12
commit efadfbfb17
4 changed files with 25 additions and 17 deletions

View File

@ -66,7 +66,6 @@ func (gui *Gui) Start(assetPath string) {
}})
ethutil.Config.SetClientString(fmt.Sprintf("/Ethereal v%s", version))
ethutil.Config.Log.Infoln("[GUI] Starting GUI")
// Create a new QML engine
gui.engine = qml.NewEngine()
context := gui.engine.Context()
@ -93,6 +92,9 @@ func (gui *Gui) Start(assetPath string) {
panic(err)
}
ethutil.Config.Log.AddLogSystem(gui)
ethutil.Config.Log.Infoln("[GUI] Starting GUI")
win.Show()
win.Wait()