From 4b31e5acf142664c2f2ebd2e0cfa26e700d947d7 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Mon, 14 Feb 2011 14:54:26 +0100 Subject: Make the number of lines and messages kept in memory configurable and lower (a lot) the number of lines kept in the info_win buffers This lower the memory usage. --- src/tabs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tabs.py') diff --git a/src/tabs.py b/src/tabs.py index aa5ccab3..3b25095d 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -261,7 +261,7 @@ class ChatTab(Tab): class TabWithInfoWin(Tab): def __init__(self): - self.info_win = windows.TextWin() + self.info_win = windows.TextWin(20) self.core.information_buffer.add_window(self.info_win) def __del__(self): -- cgit v1.2.3