Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-12-24 01:02:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-24 01:03:04 +0300
commitf46ba1a7e06d534bd93c950aed4feca87edc4fea (patch)
treeafc1b5768b0509ec2762890c38db8c2a6fbd5370 /source
parent6c2eeba0c73d6d90619018a627a2b64a60bf7b53 (diff)
Fix T72578: overwrite not animatable in 2.8x
This was disabled as part of b66ae8259e015 which disabled animation for display mode and other cases where it doesn't make sense. However it's useful to be able to overwrite frame ranges, adding this back.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index e548e8c96c2..ea1fb1eb489 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -5788,7 +5788,6 @@ static void rna_def_scene_render_data(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_overwrite", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "mode", R_NO_OVERWRITE);
- RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_ui_text(prop, "Overwrite", "Overwrite existing files while rendering");
RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);