(self, name: str)
| 535 | self._on_place_component(pre_select=last) |
| 536 | |
| 537 | def _on_symbol_selected(self, name: str): |
| 538 | svg = self._library.svg_bytes(name) |
| 539 | if svg is not None: |
| 540 | self._scene.start_placement(name, svg) |
| 541 | |
| 542 | def _make_library(self, overlay_path=None) -> SymbolLibrary: |
| 543 | """Construct a symbol library (system symbols, optionally overlaid by a |
no test coverage detected