diff options
Diffstat (limited to 'demo')
| -rw-r--r-- | demo/Main.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demo/Main.qml b/demo/Main.qml index ca22bb8..7b76fee 100644 --- a/demo/Main.qml +++ b/demo/Main.qml @@ -336,15 +336,15 @@ ApplicationWindow { function appendLog(msg) { let ts = new Date().toLocaleTimeString(Qt.locale(), "HH:mm:ss"); - statusLog.text += "[" + ts + "] " + msg + "\n"; - statusLog.cursorPosition = statusLog.text.length; + debugLog.text += "[" + ts + "] " + msg + "\n"; + debugLog.cursorPosition = debugLog.text.length; } ScrollView { anchors.fill: parent anchors.margins: 4 TextArea { - id: statusLog + id: debugLog readOnly: true color: "#cccccc" font.family: "monospace" |
