From c94b0f5f2d73faa78d197ee63bbcaec6f5ab23b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 4 Nov 2016 12:04:53 +0100 Subject: [PATCH] Slightly nicer wording of delete warning. --- blender_cloud/attract/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blender_cloud/attract/__init__.py b/blender_cloud/attract/__init__.py index 13881e6..a15ee6b 100644 --- a/blender_cloud/attract/__init__.py +++ b/blender_cloud/attract/__init__.py @@ -431,7 +431,7 @@ class AttractShotDelete(AttractOperatorMixin, Operator): def draw(self, context): layout = self.layout col = layout.column() - col.prop(self, 'confirm', text="I hereby confirm I want to delete this shot.") + col.prop(self, 'confirm', text="I hereby confirm I want to delete this shot from The Edit.") class AttractStripUnlink(AttractOperatorMixin, Operator):