Handle launch button click.
(self, button)
| 452 | self._show_status(f"Failed to open folder: {e}", "error") |
| 453 | |
| 454 | def _on_launch_clicked(self, button): |
| 455 | """Handle launch button click.""" |
| 456 | if self.launcher.is_running(): |
| 457 | self._stop_puppet() |
| 458 | else: |
| 459 | self._launch_puppet() |
| 460 | |
| 461 | def _launch_puppet(self): |
| 462 | """Launch the puppet.""" |
nothing calls this directly
no test coverage detected