Change the scroll_on_output default to false

This commit is contained in:
Stephen Boddy 2015-11-30 17:39:38 +01:00
parent 8c45d97304
commit 42f2dd31c8
2 changed files with 2 additions and 2 deletions

View File

@ -416,7 +416,7 @@ Default value: \fBTrue\fR
.TP
.B scroll_on_keystroke \fR(boolean)
If true, pressing a key jumps the scrollbar to the bottom.
Default value: \fBTrue\fR
Default value: \fBFalse\fR
.TP
.B scroll_on_output \fR(boolean)
If true, whenever there's new output the terminal will scroll to the bottom.

View File

@ -220,7 +220,7 @@ DEFAULTS = {
'scrollbar_position' : "right",
'scroll_background' : True,
'scroll_on_keystroke' : True,
'scroll_on_output' : True,
'scroll_on_output' : False,
'scrollback_lines' : 500,
'scrollback_infinite' : False,
'exit_action' : 'close',