diff options
| author | pazos <paziusss@gmail.com> | 2018-05-15 17:31:42 +0200 |
|---|---|---|
| committer | pazos <paziusss@gmail.com> | 2018-05-15 17:31:42 +0200 |
| commit | 5ba724b7fac6f4a50487dd6222f0ee087ae90d65 (patch) | |
| tree | 07db71a566618c06fa32f70d8dd8fa10106d4e98 /components/DaemonConsole.qml | |
| parent | 06fdf27be236bf5160112a8c69003adf6807fb5b (diff) | |
| download | monzero-gui-5ba724b7fac6f4a50487dd6222f0ee087ae90d65.tar.gz monzero-gui-5ba724b7fac6f4a50487dd6222f0ee087ae90d65.tar.xz monzero-gui-5ba724b7fac6f4a50487dd6222f0ee087ae90d65.zip | |
don't scroll to bottom after appending a new log message
Diffstat (limited to 'components/DaemonConsole.qml')
| -rw-r--r-- | components/DaemonConsole.qml | 8 |
1 files 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 +} |
