Only remove output device if it actually existed

This commit is contained in:
ChrisTerBeke 2019-07-31 09:20:33 +02:00
parent dc826ab456
commit 60d47fcbad

View file

@ -97,12 +97,13 @@ class NetworkOutputDeviceManager:
if not active_machine:
return
output_device_manager = CuraApplication.getInstance().getOutputDeviceManager()
stored_device_id = active_machine.getMetaDataEntry(self.META_NETWORK_KEY)
for device in self._discovered_devices.values():
if device.key == stored_device_id:
# Connect to it if the stored key matches.
self._connectToOutputDevice(device, active_machine)
else:
elif device.key in output_device_manager.getOutputDeviceIds():
# Remove device if it is not meant for the active machine.
CuraApplication.getInstance().getOutputDeviceManager().removeOutputDevice(device.key)