From 7ba624d10fec3723bcce7aad53ffedd321fd5628 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Wed, 28 May 2008 17:47:01 +0100 Subject: [PATCH] subtle change which means starting with scrollbars hidden and then asking them to be shown will default them to the right side, not the left --- terminator | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terminator b/terminator index 8b0c232b..fda8b9d7 100755 --- a/terminator +++ b/terminator @@ -135,10 +135,10 @@ class TerminatorTerm (gtk.VBox): if self.scrollbar_position != "hidden" and self.scrollbar_position != "disabled": self._scrollbar.show () - if self.scrollbar_position == 'right': - packfunc = self._termbox.pack_start - else: + if self.scrollbar_position == 'left': packfunc = self._termbox.pack_end + else: + packfunc = self._termbox.pack_start packfunc (self._vte) packfunc (self._scrollbar, False)