Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cura
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2017-10-02 17:55:04 +0300
committerGhostkeeper <rubend@tutanota.com>2017-10-02 17:55:19 +0300
commitbd0b38f6885d0dabb24aa078ade2eed6425ff5ce (patch)
treec3b8bb7d4d2c3e9453ecfd1cad65ce3041ad94ee /cura
parentdfe4a76e85e96e8ede2cffd331b19bec2abca2a7 (diff)
Use self._camera_active to detect whether we should show the camera
Because the camera timer is whether we should request the camera. Contributes to issue CURA-4376.
Diffstat (limited to 'cura')
-rw-r--r--cura/PrinterOutputDevice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/PrinterOutputDevice.py b/cura/PrinterOutputDevice.py
index c6e98257ba..827258ef3b 100644
--- a/cura/PrinterOutputDevice.py
+++ b/cura/PrinterOutputDevice.py
@@ -242,8 +242,8 @@ class PrinterOutputDevice(QObject, OutputDevice):
@pyqtSlot()
def stopCamera(self):
- self._camera_active = False
self._stopCamera()
+ self._camera_active = False
def _stopCamera(self):
Logger.log("w", "_stopCamera is not implemented by this output device")