summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-11-24 20:34:12 +0100
committermathieui <mathieui@mathieui.net>2011-11-24 20:34:12 +0100
commit5e05ede9486076fa3b074ce0a2759cb142e9dff8 (patch)
treea2ab10ed735fdfd2df8e48ee2ff8a8b05875cdf4 /src
parentaa342ca3418d633e3df05945c3bbd12fd36bbb54 (diff)
downloadpoezio-5e05ede9486076fa3b074ce0a2759cb142e9dff8.tar.gz
poezio-5e05ede9486076fa3b074ce0a2759cb142e9dff8.tar.bz2
poezio-5e05ede9486076fa3b074ce0a2759cb142e9dff8.tar.xz
poezio-5e05ede9486076fa3b074ce0a2759cb142e9dff8.zip
Increase the size of the information buffer (20 is not enough)
Diffstat (limited to 'src')
-rw-r--r--src/core.py2
1 files changed, 1 insertions, 1 deletions
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 = []