From e14a0aa53c38086b0db39b49b8d7fd868136dbdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 19 Jan 2017 15:06:03 +0100 Subject: [PATCH] Warn in the Flamenco panel about the "Overwrite" checkbox. --- blender_cloud/flamenco/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/blender_cloud/flamenco/__init__.py b/blender_cloud/flamenco/__init__.py index b36388c..db13b00 100644 --- a/blender_cloud/flamenco/__init__.py +++ b/blender_cloud/flamenco/__init__.py @@ -456,6 +456,11 @@ class FLAMENCO_PT_render(bpy.types.Panel): text='Render on Flamenco', icon='RENDER_ANIMATION') + if not context.scene.render.use_overwrite: + warnbox = layout.box().column(align=True) + warnbox.label('Please enable "Overwrite" in the Output panel,') + warnbox.label('or re-queueing this job might not do anything.') + def register(): bpy.utils.register_class(FlamencoManagerGroup)