summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-07-15 16:42:13 +0200
committerFlorent Le Coz <louiz@louiz.org>2011-07-15 16:42:13 +0200
commit60a8fe244484f93c0e232a9a3e2765f561a335a9 (patch)
treeda5609f8a43aa6ae5b70dffb8a7e97537c11c100
parent8084e5cd368a7e3f86bc5d9947a1ffbc285be175 (diff)
downloadpoezio-60a8fe244484f93c0e232a9a3e2765f561a335a9.tar.gz
poezio-60a8fe244484f93c0e232a9a3e2765f561a335a9.tar.bz2
poezio-60a8fe244484f93c0e232a9a3e2765f561a335a9.tar.xz
poezio-60a8fe244484f93c0e232a9a3e2765f561a335a9.zip
Fix the size of the text area in ConversationTab. fixed #2193
-rw-r--r--src/tabs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 0b68dcd9..8230fc0b 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -1567,7 +1567,7 @@ class ConversationTab(ChatTab):
def on_info_win_size_changed(self):
if self.core.information_win_size >= self.height-3:
return
- self.text_win.resize(self.height-3-self.core.information_win_size, self.width, 0, 0)
+ self.text_win.resize(self.height-3-self.core.information_win_size, self.width, 1, 0)
self.info_header.resize(1, self.width, self.height-3-self.core.information_win_size, 0)
def get_room(self):