mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-10 23:35:07 -06:00
Disable copy paste when either 3mf reader or writer is disabled
CURA-7913
This commit is contained in:
parent
f8b3fb3d67
commit
c393d915d7
2 changed files with 16 additions and 5 deletions
|
@ -193,6 +193,9 @@ class CuraActions(QObject):
|
|||
@pyqtSlot()
|
||||
def copy(self) -> None:
|
||||
mesh_writer = cura.CuraApplication.CuraApplication.getInstance().getMeshFileHandler().getWriter("3MFWriter")
|
||||
if not mesh_writer:
|
||||
Logger.log("e", "No 3MF writer found, unable to copy.")
|
||||
return
|
||||
|
||||
# Get the selected nodes
|
||||
selected_objects = Selection.getAllSelectedObjects()
|
||||
|
@ -204,11 +207,14 @@ class CuraActions(QObject):
|
|||
@pyqtSlot()
|
||||
def paste(self) -> None:
|
||||
application = cura.CuraApplication.CuraApplication.getInstance()
|
||||
mesh_reader = application.getMeshFileHandler().getReaderForFile(".3mf")
|
||||
if not mesh_reader:
|
||||
Logger.log("e", "No 3MF reader found, unable to paste.")
|
||||
return
|
||||
|
||||
# Parse the scene from the clipboard
|
||||
scene_string = QApplication.clipboard().text()
|
||||
|
||||
mesh_reader = application.getMeshFileHandler().getReaderForFile(".3mf")
|
||||
nodes = mesh_reader.stringToSceneNodes(scene_string)
|
||||
|
||||
# Find all fixed nodes, these are the nodes that should be avoided when arranging
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue