From 93e6c017c6cf1c8f08abc4dad3b07f2ac9dc8653 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sun, 6 Jan 2008 03:25:54 +0000 Subject: [PATCH] Support the background scrolling aspect of backgrounds too --- terminator | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terminator b/terminator index 462af7db..35601155 100755 --- a/terminator +++ b/terminator @@ -72,6 +72,7 @@ class TerminatorTerm: 'font_name' : 'Serif 10', 'foreground_color' : '#AAAAAA', 'scrollbar' : True, + 'scroll_background' : True, 'scroll_on_keystroke' : False, 'scroll_on_output' : False, 'scrollback_lines' : 100, @@ -230,6 +231,7 @@ class TerminatorTerm: self._vte.set_background_transparent (False) if background_type == "image": self._vte.set_background_image_file (self.gconf_client.get_string (self.profile + "/background_image") or self.defaults['background_image']) + self._vte.set_scroll_background (self.gconf_client.get_bool (self.profile + "/scroll_background") or self.defaults['scroll_background']) self._vte.set_background_transparent (False) if background_type == "transparent": self._vte.set_background_transparent (True)