From 7c22fe1eb55a0aaad5b36945ec346df163193a6d Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 15 Mar 2016 16:43:14 +0100 Subject: [PATCH] Removable drive plugin is now forced to use machine preference for output type Fixes CURA-1165 --- plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py index f73ba46c85..f854e2711e 100644 --- a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py +++ b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py @@ -26,6 +26,7 @@ class RemovableDriveOutputDevice(OutputDevice): self._writing = False def requestWrite(self, node, file_name = None, filter_by_machine = False): + filter_by_machine = True # This plugin is indended to be used by machine (regardless of what it was told to do) if self._writing: raise OutputDeviceError.DeviceBusyError()