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

@ -77,7 +77,10 @@ Cura.Menu
enabled: UM.WorkspaceFileHandler.enabled
onTriggered:
{
var args = { "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/x-pcb" };
var args = { "filter_by_machine": false,
"file_type": "workspace",
"preferred_mimetypes": "application/x-pcb",
"limit_mimetypes": "application/x-pcb"};
UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args)
}
}