mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Merge branch 'master' of github.com:Ultimaker/Cura into rework_file_handler
This commit is contained in:
commit
9539774c0b
40 changed files with 1161 additions and 208 deletions
|
|
@ -138,14 +138,14 @@ class PrinterOutputDevice(QObject, OutputDevice):
|
|||
def startCamera(self):
|
||||
self._startCamera()
|
||||
|
||||
def _startCamera(self, job_state):
|
||||
def _startCamera(self):
|
||||
Logger.log("w", "_startCamera is not implemented by this output device")
|
||||
|
||||
@pyqtSlot()
|
||||
def stopCamera(self):
|
||||
self._stopCamera()
|
||||
|
||||
def _stopCamera(self, job_state):
|
||||
def _stopCamera(self):
|
||||
Logger.log("w", "_stopCamera is not implemented by this output device")
|
||||
|
||||
@pyqtProperty(str, notify = jobNameChanged)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue