From 8edef603fb12e1f79719f09dd0eed7c7f399c8fc Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 19 Aug 2018 13:03:40 +0200 Subject: Fix UserList.resize --- poezio/windows/muc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3