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

@ -255,6 +255,10 @@ ApplicationWindow {
}
function setLog(msg) {
logModel.append({message: msg})
logModel.insert(0, {message: msg})
}
function clearLog() {
logModel.clear()
}
}