diff --git a/openflexure_microscope/camera/base.py b/openflexure_microscope/camera/base.py index 59a1d379..0bfb5c2c 100644 --- a/openflexure_microscope/camera/base.py +++ b/openflexure_microscope/camera/base.py @@ -288,6 +288,9 @@ class BaseCamera(metaclass=ABCMeta): # Create capture object output = CaptureObject(filepath=filepath) + # Insert a temporary tag if temporary + if temporary: + output.put_tags(['temporary']) # Update capture list self.images.append(output) @@ -328,6 +331,9 @@ class BaseCamera(metaclass=ABCMeta): # Create capture object output = CaptureObject(filepath=filepath) + # Insert a temporary tag if temporary + if temporary: + output.put_tags(['temporary']) # Update capture list self.videos.append(output)