diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-04-21 23:10:37 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-04-21 23:10:37 +0200 |
commit | 92443dcb6dd74e67899553ab58ce1a30560bd8dd (patch) | |
tree | c7834a76604ab8141348b7074a6830a1d26a614d /portato/gui/windows/main.py | |
parent | 4cc1e681aaec4accbc72f33f51677d9aded037cc (diff) | |
download | portato-92443dcb6dd74e67899553ab58ce1a30560bd8dd.tar.gz portato-92443dcb6dd74e67899553ab58ce1a30560bd8dd.tar.bz2 portato-92443dcb6dd74e67899553ab58ce1a30560bd8dd.zip |
Added shortcut for 'Reload Portage' - increased max. scrollback lines
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 99739ae..314a500 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -829,7 +829,7 @@ class MainWindow (Window): Builds the terminal. """ - self.console.set_scrollback_lines(1024) + self.console.set_scrollback_lines(2**30) self.console.set_scroll_on_output(True) self.console.set_font_from_string(self.cfg.get("consolefont", "GUI")) self.console.connect("button-press-event", self.cb_right_click) |