diff options
author | mathieui <mathieui@mathieui.net> | 2011-05-14 23:23:22 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2011-05-14 23:23:22 +0200 |
commit | dfc276a4b98297c70fe1c324c297601b18231f74 (patch) | |
tree | db167fdb69b19f7e73e9d422de27c772f07500bc /src | |
parent | 423a7d14472412b9dd9156c4c40102149858bc69 (diff) | |
download | poezio-dfc276a4b98297c70fe1c324c297601b18231f74.tar.gz poezio-dfc276a4b98297c70fe1c324c297601b18231f74.tar.bz2 poezio-dfc276a4b98297c70fe1c324c297601b18231f74.tar.xz poezio-dfc276a4b98297c70fe1c324c297601b18231f74.zip |
Breaking poezio is a bad thing
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): """ |