make debug log autoscroll when you add new content to it

This commit is contained in:
Brad Hefta-Gaub 2016-12-20 11:27:18 -08:00
parent 9b11c7cc9c
commit f8bae60361

View file

@ -28,7 +28,7 @@ Rectangle {
} }
function fromScript(message) { function fromScript(message) {
textArea.text += message + "\n"; textArea.append(message);
} }
} }