[Bf-blender-cvs] [fc58dbc1867] fracture_modifier: do not invalidate cache when enabling / disabling centroid output

Martin Felke noreply at git.blender.org
Thu Dec 21 15:14:53 CET 2017


Commit: fc58dbc1867194d69c24d95e6ea1275a698ebe2d
Author: Martin Felke
Date:   Thu Dec 21 15:14:44 2017 +0100
Branches: fracture_modifier
https://developer.blender.org/rBfc58dbc1867194d69c24d95e6ea1275a698ebe2d

do not invalidate cache when enabling / disabling centroid output

===================================================================

M	source/blender/makesrna/intern/rna_fracture.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_fracture.c b/source/blender/makesrna/intern/rna_fracture.c
index 16000057f8f..86250bfd618 100644
--- a/source/blender/makesrna/intern/rna_fracture.c
+++ b/source/blender/makesrna/intern/rna_fracture.c
@@ -1416,7 +1416,7 @@ void RNA_def_fracture(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "use_centroids", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "use_centroids", false);
 	RNA_def_property_ui_text(prop, "Use Centroids", "Only output the meshisland centroids as vertices");
-	RNA_def_property_update(prop, 0, "rna_Modifier_update");
+	//RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
 	RNA_api_fracture(brna, srna);
 }



More information about the Bf-blender-cvs mailing list