From c5e80b968862b4fe54d394ed278466f3eb02dd41 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 2 Oct 2016 16:14:52 +0100 Subject: =?UTF-8?q?Don=E2=80=99t=20put=20the=20cursor=20at=20the=20top-lef?= =?UTF-8?q?t=20if=20a=20move()=20failed.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- poezio/windows/base_wins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'poezio') diff --git a/poezio/windows/base_wins.py b/poezio/windows/base_wins.py index fe24ba65..a9229d32 100644 --- a/poezio/windows/base_wins.py +++ b/poezio/windows/base_wins.py @@ -84,7 +84,7 @@ class Win(object): try: self._win.move(y, x) except: - self._win.move(0, 0) + pass def addstr_colored(self, text, y=None, x=None): """ -- cgit v1.2.3