[Bf-blender-cvs] [930b6a05407] fracture_modifier: rna build fix (error when building debug)

Martin Felke noreply at git.blender.org
Sun Feb 25 00:03:11 CET 2018


Commit: 930b6a05407ae01dd037e4a3bbca602e9fdabb3a
Author: Martin Felke
Date:   Sun Feb 25 00:02:38 2018 +0100
Branches: fracture_modifier
https://developer.blender.org/rB930b6a05407ae01dd037e4a3bbca602e9fdabb3a

rna build fix (error when building debug)

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

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 227c995988a..6d2d3c6dac6 100644
--- a/source/blender/makesrna/intern/rna_fracture.c
+++ b/source/blender/makesrna/intern/rna_fracture.c
@@ -1329,7 +1329,7 @@ void RNA_def_fracture(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "boolean_double_threshold", PROP_FLOAT, PROP_DISTANCE);
 	RNA_def_property_float_sdna(prop, NULL, "boolean_double_threshold");
 	RNA_def_property_range(prop, 0, 1.0f);
-	RNA_def_property_ui_range(prop, 0, 1, 0.0001, 7);
+	RNA_def_property_ui_range(prop, 0, 1, 0.0001, 6);
 	RNA_def_property_ui_text(prop, "Overlap Threshold",  "Threshold for checking overlapping geometry");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");



More information about the Bf-blender-cvs mailing list