UI now displays an option to select the same profile

CURA-11561
This commit is contained in:
Erwan MATHIEU 2024-02-02 12:17:34 +01:00
parent c6e5620295
commit 733ef4d3d8
8 changed files with 64 additions and 7 deletions

View file

@ -46,8 +46,15 @@ class ThreeMFReader(MeshReader):
suffixes=["3mf"]
)
)
MimeTypeDatabase.addMimeType(
MimeType(
name="application/x-pcb",
comment="PCB",
suffixes=["pcb"]
)
)
self._supported_extensions = [".3mf"]
self._supported_extensions = [".3mf", ".pcb"]
self._root = None
self._base_name = ""
self._unit = None