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.
This commit is contained in:
Ghostkeeper 2017-10-02 16:55:04 +02:00
parent dfe4a76e85
commit bd0b38f688
No known key found for this signature in database
GPG key ID: C5F96EE2BC0F7E75
2 changed files with 2 additions and 2 deletions

View file

@ -334,7 +334,7 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
else: #Camera wasn't even running. Don't try to stop it or you'll get a segfault.
return
if self._image_reply:
if self._camera_active:
try:
self._image_reply.abort()
self._image_reply.downloadProgress.disconnect(self._onStreamDownloadProgress)