Writes new message to the status area
(self, message, delay)
| 328 | self.last_message = '' |
| 329 | |
| 330 | def update(self, message, delay): |
| 331 | """ |
| 332 | Writes new message to the status area |
| 333 | """ |
| 334 | if not args.status_off: |
| 335 | message_str = message.ljust(11) |
| 336 | self.screen.addstr(0, 0, message_str, curses.color_pair(3)) |
| 337 | self.last_message = message_str |
| 338 | # More frames for faster speeds: |
| 339 | self.countdown = (100 // (delay // 10 + 1)) + 2 |
| 340 | |
| 341 | def refresh(self): |
| 342 | """ |
no outgoing calls
no test coverage detected