fix indent

This commit is contained in:
HellAholic 2024-09-12 14:58:06 +02:00
parent 1e3fbc4ef2
commit b91051e594

View File

@ -564,16 +564,16 @@ Item
{ {
id: exportProjectForSupportAction id: exportProjectForSupportAction
text: catalog.i18nc("@action:inmenu menubar:help","Export Project For Support") text: catalog.i18nc("@action:inmenu menubar:help","Export Project For Support")
onTriggered: onTriggered:
{ {
var supportName = CuraActions.supportProjectTag() var supportName = CuraActions.supportProjectTag()
var args = { var args = {
"filter_by_machine": false, "filter_by_machine": false,
"file_type": "workspace", "file_type": "workspace",
"preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml",
"limit_mimetypes": ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], "limit_mimetypes": ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"],
}; };
UM.OutputDeviceManager.requestWriteToDevice("local_file", supportName, args) UM.OutputDeviceManager.requestWriteToDevice("local_file", supportName, args)
} }
} }
} }