This is the method is called from the timer to reset the status bar.
(self, callback, userdata=None)
| 191 | self.widget = urwid.Columns([self.text, self.edit]) |
| 192 | |
| 193 | def _check(self, callback, userdata=None): |
| 194 | """This is the method is called from the timer to reset the status bar.""" |
| 195 | self.timer = None |
| 196 | self.settext(self.s) |
| 197 | |
| 198 | def message(self, s, n=3): |
| 199 | """Display a message for a short n seconds on the statusbar and return |