Show an error message in the status bar.
(self, message: str)
| 879 | return False |
| 880 | |
| 881 | def _show_error(self, message: str): |
| 882 | """Show an error message in the status bar.""" |
| 883 | self.show_toast(message) |
| 884 | |
| 885 | def _show_warning(self, title: str, message: str): |
| 886 | """Show a warning dialog.""" |
no test coverage detected