summaryrefslogtreecommitdiff
path: root/src/window.py
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-01-29 16:24:44 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-01-29 16:24:44 +0000
commit33cf82e0947be35bf4e4666d0db632b60e5c27f9 (patch)
tree5924de25ac5278e0c072e8a1511995be5bde87d6 /src/window.py
parentba8d1803f41b776a1e761a7f8ece44f50c480e4c (diff)
downloadpoezio-33cf82e0947be35bf4e4666d0db632b60e5c27f9.tar.gz
poezio-33cf82e0947be35bf4e4666d0db632b60e5c27f9.tar.bz2
poezio-33cf82e0947be35bf4e4666d0db632b60e5c27f9.tar.xz
poezio-33cf82e0947be35bf4e4666d0db632b60e5c27f9.zip
gestion de la RECEPTION des kicks
Diffstat (limited to 'src/window.py')
-rw-r--r--src/window.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.py b/src/window.py
index 5c4c1a32..b7965335 100644
--- a/src/window.py
+++ b/src/window.py
@@ -297,10 +297,10 @@ class Window(object):
Resize the whole tabe. i.e. all its sub-windows
"""
self.size = (self.height, self.width) = stdscr.getmaxyx()
- self.user_win.resize(self.height-3, self.width/7, 1, 6*(self.width/7), stdscr)
+ self.user_win.resize(self.height-3, self.width/9, 1, 11*(self.width/12), stdscr)
self.topic_win.resize(1, self.width, 0, 0, stdscr)
self.info_win.resize(1, self.width, self.height-2, 0, stdscr)
- self.text_win.resize(self.height-3, (self.width/7)*6, 1, 0, stdscr)
+ self.text_win.resize(self.height-3, (self.width/12)*11, 1, 0, stdscr)
self.input.resize(1, self.width, self.height-1, 0, stdscr)
def refresh(self, room):