(self)
| 374 | ) |
| 375 | |
| 376 | def _on_place_parameters(self): |
| 377 | from .parameter_dialog import ParameterDialog |
| 378 | dlg = ParameterDialog(parent=self) |
| 379 | if dlg.exec() and dlg.svg_bytes(): |
| 380 | self._scene.start_parameter_placement( |
| 381 | dlg.get_params(), dlg.preamble_path(), |
| 382 | dlg.display_width(), dlg.display_height(), |
| 383 | ) |
| 384 | |
| 385 | def _on_place_analysis(self): |
| 386 | from .analysis_dialog import AnalysisDialog |
nothing calls this directly
no test coverage detected