diff --git a/pype/plugins/maya/create/create_review.py b/pype/plugins/maya/create/create_review.py index c488a7559c..d76b78c580 100644 --- a/pype/plugins/maya/create/create_review.py +++ b/pype/plugins/maya/create/create_review.py @@ -11,6 +11,7 @@ class CreateReview(avalon.maya.Creator): family = "review" icon = "video-camera" defaults = ['Main'] + keepImages = False def __init__(self, *args, **kwargs): super(CreateReview, self).__init__(*args, **kwargs) @@ -21,6 +22,6 @@ class CreateReview(avalon.maya.Creator): for key, value in animation_data.items(): data[key] = value - data["keepImages"] = False + data["keepImages"] = self.keepImages self.data = data