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 18:32:03 +0300
committerGhostkeeper <rubend@tutanota.com>2017-10-02 18:34:57 +0300
commit1aa6d2876cc16b1c245b8f2751be52eb9d66dc74 (patch)
tree9541e9b13bd704ce00047b0a75d1407cec44b14f /cura
parent91c5515d4e8cd61dcea85a7e9dd1e1afa1218bd7 (diff)
Revert "Use self._camera_active to detect whether we should show the camera"
This reverts commit bd0b38f6885d0dabb24aa078ade2eed6425ff5ce.
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 827258ef3b..c6e98257ba 100644
--- a/cura/PrinterOutputDevice.py
+++ b/cura/PrinterOutputDevice.py
@@ -242,8 +242,8 @@ class PrinterOutputDevice(QObject, OutputDevice):
@pyqtSlot()
def stopCamera(self):
- self._stopCamera()
self._camera_active = False
+ self._stopCamera()
def _stopCamera(self):
Logger.log("w", "_stopCamera is not implemented by this output device")