mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 03:07:53 -06:00
Merge pull request #1123 from fieldOfView/fix_start_stop_camera
Remove unused required argument on _startCamera and _stopCamera
This commit is contained in:
commit
e88cbb75f2
1 changed files with 2 additions and 2 deletions
|
@ -138,14 +138,14 @@ class PrinterOutputDevice(QObject, OutputDevice):
|
||||||
def startCamera(self):
|
def startCamera(self):
|
||||||
self._startCamera()
|
self._startCamera()
|
||||||
|
|
||||||
def _startCamera(self, job_state):
|
def _startCamera(self):
|
||||||
Logger.log("w", "_startCamera is not implemented by this output device")
|
Logger.log("w", "_startCamera is not implemented by this output device")
|
||||||
|
|
||||||
@pyqtSlot()
|
@pyqtSlot()
|
||||||
def stopCamera(self):
|
def stopCamera(self):
|
||||||
self._stopCamera()
|
self._stopCamera()
|
||||||
|
|
||||||
def _stopCamera(self, job_state):
|
def _stopCamera(self):
|
||||||
Logger.log("w", "_stopCamera is not implemented by this output device")
|
Logger.log("w", "_stopCamera is not implemented by this output device")
|
||||||
|
|
||||||
@pyqtProperty(str, notify = jobNameChanged)
|
@pyqtProperty(str, notify = jobNameChanged)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue