From 57fdab2f3e379d0e2ab7a3a394f3ff129f3efa34 Mon Sep 17 00:00:00 2001 From: René 'Necoro' Neumann Date: Tue, 29 Apr 2008 19:13:24 +0200 Subject: Changed max scrollback lines to 2**20 to prevent segfaults --- portato/gui/windows/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'portato') diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 314a500..5dffad3 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(2**30) + self.console.set_scrollback_lines(2**20) 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) -- cgit v1.2.3-54-g00ecf