diff options
author | mathieui <mathieui@mathieui.net> | 2018-08-19 13:03:40 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2018-08-19 13:03:40 +0200 |
commit | 8edef603fb12e1f79719f09dd0eed7c7f399c8fc (patch) | |
tree | 55f73206f60529842285852f0e1a2285982936b3 | |
parent | 8d2f25095f7a88af4ee53d2ca1f3604dbc2c5dbd (diff) | |
download | poezio-8edef603fb12e1f79719f09dd0eed7c7f399c8fc.tar.gz poezio-8edef603fb12e1f79719f09dd0eed7c7f399c8fc.tar.bz2 poezio-8edef603fb12e1f79719f09dd0eed7c7f399c8fc.tar.xz poezio-8edef603fb12e1f79719f09dd0eed7c7f399c8fc.zip |
Fix UserList.resize
-rw-r--r-- | poezio/windows/muc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/windows/muc.py b/poezio/windows/muc.py index 910deee6..3e52f63d 100644 --- a/poezio/windows/muc.py +++ b/poezio/windows/muc.py @@ -119,7 +119,7 @@ class UserList(Win): char = get_theme().CHAR_STATUS self.addstr(y, 0, char, to_curses_attr(show_col)) - def resize(self, width: int, y: int, x: int) -> None: + def resize(self, height: int, width: int, y: int, x: int) -> None: separator = to_curses_attr(get_theme().COLOR_VERTICAL_SEPARATOR) self._resize(height, width, y, x) self._win.attron(separator) |