aboutsummaryrefslogtreecommitdiff
path: root/qml/CommandInput.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/CommandInput.qml')
-rw-r--r--qml/CommandInput.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/qml/CommandInput.qml b/qml/CommandInput.qml
index 5fbde77..99f5d0e 100644
--- a/qml/CommandInput.qml
+++ b/qml/CommandInput.qml
@@ -118,7 +118,11 @@ Item {
}
function log(msg) {
- text += msg;
+ if ( isInitial() ) {
+ text = msg;
+ } else {
+ text += '<br/>' + msg;
+ }
}
function error(msg) {