diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-12-15 17:26:34 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-12-15 17:26:34 +0000 |
commit | 289f5e65b83670b7c76f807f4499f260cb4c6c63 (patch) | |
tree | 526f27332ec2c29056005771aa6dfb7eae7bdaad /src/tabs.py | |
parent | c38cb65080176d9e0d7a649c0d00e4a814d1ecb7 (diff) | |
download | poezio-289f5e65b83670b7c76f807f4499f260cb4c6c63.tar.gz poezio-289f5e65b83670b7c76f807f4499f260cb4c6c63.tar.bz2 poezio-289f5e65b83670b7c76f807f4499f260cb4c6c63.tar.xz poezio-289f5e65b83670b7c76f807f4499f260cb4c6c63.zip |
fixed #2058
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py index 9de41fac..5e103c10 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -892,7 +892,7 @@ class ConversationTab(ChatTab): def resize(self): Tab.resize(self) - self.text_win.resize(self.height-3-self.core.information_win_size, self.width, 1, 0, self.core.stdscr) + self.text_win.resize(self.height-4-self.core.information_win_size, self.width, 1, 0, self.core.stdscr) self.text_win.rebuild_everything(self._room) self.upper_bar.resize(1, self.width, 0, 0, self.core.stdscr) self.info_header.resize(1, self.width, self.height-3-self.core.information_win_size, 0, self.core.stdscr) |