diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/windows.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/windows.py b/src/windows.py index c7c3bfa2..df361ed8 100644 --- a/src/windows.py +++ b/src/windows.py @@ -68,9 +68,8 @@ class Win(object): if not self._win: self._win = curses.newwin(height, width, y, x) else: - if height > 5 and width > 40: - self._win.resize(height, width) - self._win.mvwin(y, x) + self._win.resize(height, width) + self._win.mvwin(y, x) def resize(self, height, width, y, x): """ |