mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
Added PrintJob handling to ClusterUM3
CL-541
This commit is contained in:
parent
152f3462ce
commit
b1649f2d38
4 changed files with 68 additions and 5 deletions
|
@ -60,6 +60,13 @@ class PrinterOutputDevice(QObject, OutputDevice):
|
|||
def _update(self):
|
||||
pass
|
||||
|
||||
def _getPrinterByKey(self, key):
|
||||
for printer in self._printers:
|
||||
if printer.key == key:
|
||||
return printer
|
||||
|
||||
return None
|
||||
|
||||
def requestWrite(self, nodes, file_name = None, filter_by_machine = False, file_handler = None):
|
||||
raise NotImplementedError("requestWrite needs to be implemented")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue