Merge branch '3.2' of github.com:Ultimaker/Cura into 3.2

This commit is contained in:
Ghostkeeper 2018-01-18 13:25:16 +01:00
commit afcf35cb0e
No known key found for this signature in database
GPG Key ID: 5252B696FB5E7C7A

View File

@ -286,7 +286,10 @@ class NetworkClusterPrinterOutputDevice(NetworkPrinterOutputDevice.NetworkPrinte
gcode_list = getattr(Application.getInstance().getController().getScene(), "gcode_dict")[output_build_plate_number]
if not gcode_list: # Empty build plate
Logger.log("d", "Skipping empty job (build plate number %d).", output_build_plate_number)
if self._job_list:
return self.sendPrintJob()
else:
return
self._send_gcode_start = time.time()
Logger.log("d", "Sending print job [%s] to host, build plate [%s]..." % (file_name, output_build_plate_number))