mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-12 17:27:51 -06:00
Also added "none" to the state list of prints_jobs not to be matched with printers
This commit is contained in:
parent
416f695610
commit
c988e0eccb
1 changed files with 1 additions and 1 deletions
|
@ -392,7 +392,7 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice):
|
|||
self._updatePrintJob(print_job, print_job_data)
|
||||
|
||||
if print_job.state != "queued": # Print job should be assigned to a printer.
|
||||
if print_job.state in ["failed", "finished", "aborted"]:
|
||||
if print_job.state in ["failed", "finished", "aborted", "none"]:
|
||||
# Print job was already completed, so don't attach it to a printer.
|
||||
printer = None
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue