Change the scroll_on_output default to false

This commit is contained in:
Stephen Boddy 2015-11-30 17:39:46 +01:00
parent 6beaa26277
commit bc0903191d
2 changed files with 2 additions and 2 deletions

View File

@ -452,7 +452,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

@ -225,7 +225,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',