diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-27 01:59:02 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-27 01:59:02 +0200 |
commit | 3cb2c8351acba0bd81641f2c281fd7e70f74a365 (patch) | |
tree | e6a4c3469d5380e8347503f0f5f6e433756d734d /src | |
parent | fea4f95de90a3f63cf768f4f0557efed0e22bce6 (diff) | |
download | poezio-3cb2c8351acba0bd81641f2c281fd7e70f74a365.tar.gz poezio-3cb2c8351acba0bd81641f2c281fd7e70f74a365.tar.bz2 poezio-3cb2c8351acba0bd81641f2c281fd7e70f74a365.tar.xz poezio-3cb2c8351acba0bd81641f2c281fd7e70f74a365.zip |
Fix a resize issue when vertical tab list options are set from the roster
Diffstat (limited to 'src')
-rw-r--r-- | src/tabs/rostertab.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tabs/rostertab.py b/src/tabs/rostertab.py index a3147112..42a63545 100644 --- a/src/tabs/rostertab.py +++ b/src/tabs/rostertab.py @@ -276,6 +276,7 @@ class RosterInfoTab(Tab): self.roster_win.resize(self.height-1 - Tab.tab_win_height(), roster_width, 0, 0) self.contact_info_win.resize(5 - Tab.tab_win_height(), info_width, self.height-2-4, roster_width+1) self.input.resize(1, self.width, self.height-1, 0) + self.default_help_message.resize(1, self.width, self.height-1, 0) def completion(self): # Check if we are entering a command (with the '/' key) |