Increase the size of the information buffer (20 is not enough)

This commit is contained in:
mathieui 2011-11-24 20:34:12 +01:00
parent aa342ca341
commit 5e05ede948

View file

@ -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 = []