(self)
| 500 | ) |
| 501 | |
| 502 | def _on_place_text(self): |
| 503 | from .text_dialog import TextDialog |
| 504 | dlg = TextDialog(parent=self) |
| 505 | if dlg.exec(): |
| 506 | self._scene.start_text_placement(dlg.text()) |
| 507 | |
| 508 | def _on_place_hyperlink(self): |
| 509 | from .hyperlink_dialog import HyperlinkDialog |
nothing calls this directly
no test coverage detected