From 5ba724b7fac6f4a50487dd6222f0ee087ae90d65 Mon Sep 17 00:00:00 2001 From: pazos Date: Tue, 15 May 2018 17:31:42 +0200 Subject: [PATCH] don't scroll to bottom after appending a new log message --- components/DaemonConsole.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/DaemonConsole.qml b/components/DaemonConsole.qml index 225b2dba..3efd024b 100644 --- a/components/DaemonConsole.qml +++ b/components/DaemonConsole.qml @@ -150,9 +150,9 @@ Window { textArea.append(_timestamp + " " + _msg); // scroll to bottom - if(flickable.contentHeight > content.height){ - flickable.contentY = flickable.contentHeight + 20; - } + //if(flickable.contentHeight > content.height){ + // flickable.contentY = flickable.contentHeight + 20; + //} } } @@ -213,4 +213,4 @@ Window { color: "#2F2F2F" z: 2 } -} \ No newline at end of file +}