summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alot/ui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/ui.py b/alot/ui.py
index de1ca0ce..ae455f8e 100644
--- a/alot/ui.py
+++ b/alot/ui.py
@@ -725,7 +725,7 @@ class UI:
self.mainloop.set_alarm_in(timeout, clear)
return msg
- def update(self, redraw=True):
+ def update(self):
"""redraw interface"""
# get the main urwid.Frame widget
mainframe = self.root_widget.original_widget
@@ -737,7 +737,7 @@ class UI:
self._update_statusbar()
# force a screen redraw
- if self.mainloop.screen.started and redraw:
+ if self.mainloop.screen.started:
self.mainloop.draw_screen()
def _update_statusbar(self):