mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Fix local cloud printing for um printers
CURA-11390
This commit is contained in:
parent
e66a3cda67
commit
0225f92ae0
1 changed files with 6 additions and 1 deletions
|
@ -146,7 +146,12 @@ class LocalClusterOutputDevice(UltimakerNetworkedPrinterOutputDevice):
|
||||||
self.writeStarted.emit(self)
|
self.writeStarted.emit(self)
|
||||||
|
|
||||||
# Export the scene to the correct file type.
|
# Export the scene to the correct file type.
|
||||||
job = ExportFileJob(file_handler=file_handler, nodes=nodes, firmware_version=self.firmwareVersion)
|
job = ExportFileJob(
|
||||||
|
file_handler=file_handler,
|
||||||
|
nodes=nodes,
|
||||||
|
firmware_version=self.firmwareVersion,
|
||||||
|
print_type=self.printerType,
|
||||||
|
)
|
||||||
job.finished.connect(self._onPrintJobCreated)
|
job.finished.connect(self._onPrintJobCreated)
|
||||||
job.start()
|
job.start()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue