(self, message: str)
| 313 | dialog.present() |
| 314 | |
| 315 | def _show_error(self, message: str): |
| 316 | logging.error(f"Application Error: {message}") |
| 317 | self._show_error_dialog(_("Error"), message) |
| 318 | |
| 319 | def _show_toast(self, message: str): |
| 320 | logging.info(f"Toast: {message}") |
nothing calls this directly
no test coverage detected