Commit: c55b48823d8ae3ed0aa79c1ed33787111f399185 Author: Antonio Vazquez Date: Wed Feb 12 09:58:14 2020 +0100 Branches: greasepencil-object https://developer.blender.org/rBc55b48823d8ae3ed0aa79c1ed33787111f399185
GPencil: Avoid animation in mask name =================================================================== M source/blender/makesrna/intern/rna_gpencil.c =================================================================== diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c index 708fa10f657..3666683a4ed 100644 --- a/source/blender/makesrna/intern/rna_gpencil.c +++ b/source/blender/makesrna/intern/rna_gpencil.c @@ -1684,6 +1684,7 @@ static void rna_def_gpencil_layer_mask(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Layer", "Mask layer name"); RNA_def_property_string_funcs(prop, NULL, NULL, "rna_GPencilLayer_mask_info_set"); RNA_def_struct_name_property(srna, prop); + RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_update(prop, NC_GPENCIL | ND_DATA | NA_RENAME, NULL); /* Flags */ _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
