Minor UI changes
* Moved log from block view * Prepend instead of append for logs
This commit is contained in:
@ -255,6 +255,10 @@ ApplicationWindow {
|
||||
}
|
||||
|
||||
function setLog(msg) {
|
||||
logModel.append({message: msg})
|
||||
logModel.insert(0, {message: msg})
|
||||
}
|
||||
|
||||
function clearLog() {
|
||||
logModel.clear()
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user