[Bf-blender-cvs] [e2a01d4] fracture_modifier: small fix for ui description of mass_threshold_factor

Martin Felke noreply at git.blender.org
Sun Oct 25 09:42:45 CET 2015


Commit: e2a01d408db7dd1c8855e2d6d0a540b142f0f9cc
Author: Martin Felke
Date:   Sun Oct 25 09:41:32 2015 +0100
Branches: fracture_modifier
https://developer.blender.org/rBe2a01d408db7dd1c8855e2d6d0a540b142f0f9cc

small fix for ui description of mass_threshold_factor

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

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

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

diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 5a0f813..f93b429 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -5212,7 +5212,7 @@ static void rna_def_modifier_fracture(BlenderRNA *brna)
 	RNA_def_property_float_sdna(prop, NULL, "mass_threshold_factor");
 	RNA_def_property_range(prop, 0.0f, 1.0f);
 	RNA_def_property_ui_text(prop, "Stability Factor",
-	                         "Determines how 'stable' an object is, by multiplying threshold * mass * this factor, 0 means disabled, 1 means highest mass					                          dependent stability");
+	                         "Determines how 'stable' an object is, by multiplying threshold * mass * this factor, 0 means disabled, 1 means highest mass dependent stability");
 	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 }




More information about the Bf-blender-cvs mailing list