(self)
| 357 | self._scene.addItem(LibraryItem(str(lib_path), pos)) |
| 358 | |
| 359 | def _on_place_image(self): |
| 360 | from .image_dialog import ImageDialog |
| 361 | dlg = ImageDialog(parent=self) |
| 362 | if dlg.exec() and dlg.image_path(): |
| 363 | self._scene.start_image_placement( |
| 364 | dlg.image_path(), dlg.image_width(), dlg.image_height() |
| 365 | ) |
| 366 | |
| 367 | def _on_place_latex(self): |
| 368 | from .latex_fragment_dialog import LatexFragmentDialog |
nothing calls this directly
no test coverage detected