From 0f962aeda5cdf63795ffe9c761d1dfb2cda828a5 Mon Sep 17 00:00:00 2001 From: terror_macbeth_I Date: Fri, 25 Nov 2011 14:24:42 +0000 Subject: [PATCH] Fix #1953 : Console flickering on every update --- deluge/ui/console/screen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/console/screen.py b/deluge/ui/console/screen.py index 2ee8ede88..1a05c4502 100644 --- a/deluge/ui/console/screen.py +++ b/deluge/ui/console/screen.py @@ -261,7 +261,7 @@ class Screen(CursesStdIO): Updates the lines based on the`:attr:lines` based on the `:attr:display_lines_offset` attribute and the status bars. """ - self.stdscr.clear() + self.stdscr.erase() # Update the status bars self.add_string(0, self.topbar)