(self, text)
| 409 | return "" |
| 410 | |
| 411 | def set_title(self, text): |
| 412 | if not self.title_widget: |
| 413 | raise ValueError('Cannot set title when tline is unset') |
| 414 | self.title_widget.set_text(self.format_title(text)) |
| 415 | self.tline_widget._invalidate() |
| 416 | |
| 417 | |
| 418 | gui.run() |
nothing calls this directly
no test coverage detected