diff options
author | Nalin Dahyabhai <nalin@src.gnome.org> | 2002-03-17 06:04:02 +0000 |
---|---|---|
committer | Nalin Dahyabhai <nalin@src.gnome.org> | 2002-03-17 06:04:02 +0000 |
commit | 8b429a79a9eefcacc0f3edd07fe44d94e5242851 (patch) | |
tree | f12ec46472b6a255447c137e7c01dd8ec4f72fe9 /src/vteapp.c | |
parent | 0d351fd6824f1b081a6dc559573ced5e0d20c5f2 (diff) |
Fix handling of scroll-on-output to always scroll when we're at the bottom
* src/vte.c: Fix handling of scroll-on-output to always scroll when we're at the bottom of the buffer.
* src/vteapp.c: Disable scroll-on-output by default.
Diffstat (limited to 'src/vteapp.c')
-rw-r--r-- | src/vteapp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vteapp.c b/src/vteapp.c index a994481..80ed3a7 100644 --- a/src/vteapp.c +++ b/src/vteapp.c @@ -116,7 +116,7 @@ main(int argc, char **argv) /* Set some defaults. */ vte_terminal_set_audible_bell(VTE_TERMINAL(widget), TRUE); vte_terminal_set_cursor_blinks(VTE_TERMINAL(widget), TRUE); - vte_terminal_set_scroll_on_output(VTE_TERMINAL(widget), TRUE); + vte_terminal_set_scroll_on_output(VTE_TERMINAL(widget), FALSE); vte_terminal_set_scroll_on_keystroke(VTE_TERMINAL(widget), TRUE); vte_terminal_set_background_image_file(VTE_TERMINAL(widget), "./background"); |