(self)
| 293 | self._scene.start_library_placement(path) |
| 294 | |
| 295 | def _on_place_library_link(self): |
| 296 | from .library_link_dialog import LibraryLinkDialog |
| 297 | dlg = LibraryLinkDialog(parent=self) |
| 298 | if dlg.exec() and dlg.file_path(): |
| 299 | self._scene.start_library_placement( |
| 300 | dlg.file_path(), dlg.directive(), dlg.simulator(), dlg.corner() |
| 301 | ) |
| 302 | |
| 303 | def _on_place_model_definition(self): |
| 304 | from .model_dialog import ModelDialog |
nothing calls this directly
no test coverage detected