From f6a4d19084a8b3628ad7451447f2b56e2303c4ec Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sun, 1 Nov 2009 17:49:32 +0000 Subject: [PATCH] Add the clear() back --- deluge/ui/console/screen.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deluge/ui/console/screen.py b/deluge/ui/console/screen.py index 2c74045a5..456db950b 100644 --- a/deluge/ui/console/screen.py +++ b/deluge/ui/console/screen.py @@ -253,6 +253,8 @@ 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() + # Update the status bars self.add_string(0, self.topbar) self.add_string(self.rows - 2, self.bottombar)