From 5e05ede9486076fa3b074ce0a2759cb142e9dff8 Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 24 Nov 2011 20:34:12 +0100 Subject: Increase the size of the information buffer (20 is not enough) --- src/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core.py') diff --git a/src/core.py b/src/core.py index dffa7966..8a903a8f 100644 --- a/src/core.py +++ b/src/core.py @@ -96,7 +96,7 @@ class Core(object): # information window. self.information_buffer = TextBuffer() self.information_win_size = config.get('info_win_height', 2, 'var') - self.information_win = windows.TextWin(20) + self.information_win = windows.TextWin(300) self.tab_win = windows.GlobalInfoBar() self.information_buffer.add_window(self.information_win) self.tabs = [] -- cgit v1.2.3