summaryrefslogtreecommitdiff
path: root/src/vteapp.c
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@src.gnome.org>2003-05-22 19:14:49 +0000
committerNalin Dahyabhai <nalin@src.gnome.org>2003-05-22 19:14:49 +0000
commitc5bc6f08c3c37303c5d071104c30241e9322fa94 (patch)
tree15bd79bbc685294edc41a5c173c60f1c666b3a59 /src/vteapp.c
parentffcc4a77caa05fb6affd77871701f1692ef6a96b (diff)
force an entire window repaint if we're supposed to scroll the background
* src/vte.c(vte_terminal_scroll_region): force an entire window repaint if we're supposed to scroll the background but we're not scrolling the entire window. This means we need to repaint the scrolled region, and to keep things looking right, we need to repaint everything. * src/vteapp.c(main): enable visible bell if we're disabling the audible bell, and vice-versa. * src/vte.c: flesh out some doc comments. * doc/reference/tmpl/vte.sgml: flesh out some notes on signals.
Diffstat (limited to 'src/vteapp.c')
-rw-r--r--src/vteapp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vteapp.c b/src/vteapp.c
index f0943af..ffb2b2f 100644
--- a/src/vteapp.c
+++ b/src/vteapp.c
@@ -572,6 +572,7 @@ main(int argc, char **argv)
/* Set some defaults. */
vte_terminal_set_audible_bell(VTE_TERMINAL(widget), audible);
+ vte_terminal_set_visible_bell(VTE_TERMINAL(widget), !audible);
vte_terminal_set_cursor_blinks(VTE_TERMINAL(widget), blink);
vte_terminal_set_scroll_background(VTE_TERMINAL(widget), scroll);
vte_terminal_set_scroll_on_output(VTE_TERMINAL(widget), FALSE);