Commit: 15868b1ff4ad07ca5f7274b6c54f2f43a4ded955 Author: Thomas Lachmann Date: Thu Jun 24 19:01:44 2021 +0200 Branches: master https://developer.blender.org/rB15868b1ff4ad07ca5f7274b6c54f2f43a4ded955
Fix wrong default value for RenderEngine.bl_use_image_save Differential Revision: https://developer.blender.org/D11680 =================================================================== M source/blender/makesrna/intern/rna_render.c =================================================================== diff --git a/source/blender/makesrna/intern/rna_render.c b/source/blender/makesrna/intern/rna_render.c index 6715941ae2a..4fe61df9387 100644 --- a/source/blender/makesrna/intern/rna_render.c +++ b/source/blender/makesrna/intern/rna_render.c @@ -858,6 +858,7 @@ static void rna_def_render_engine(BlenderRNA *brna) prop = RNA_def_property(srna, "bl_use_image_save", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, NULL, "type->flag", RE_USE_NO_IMAGE_SAVE); + RNA_def_property_boolean_default(prop, true); RNA_def_property_flag(prop, PROP_REGISTER_OPTIONAL); RNA_def_property_ui_text( prop, _______________________________________________ Bf-blender-cvs mailing list [email protected] List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs
