(self)
| 506 | self._scene.start_text_placement(dlg.text()) |
| 507 | |
| 508 | def _on_place_hyperlink(self): |
| 509 | from .hyperlink_dialog import HyperlinkDialog |
| 510 | dlg = HyperlinkDialog(parent=self) |
| 511 | if dlg.exec(): |
| 512 | self._scene.start_hyperlink_placement(dlg.url(), dlg.label()) |
| 513 | |
| 514 | def _on_place_label(self): |
| 515 | from .wire_item import WireItem |
nothing calls this directly
no test coverage detected