Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Genrich <daniel.genrich@gmx.net>2009-04-16 01:03:23 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2009-04-16 01:03:23 +0400
commitebcd08eb4aa8ab0a6f0fc549d54dd00046443ac4 (patch)
treefb7c3602591448d474720b24e7de71c3bfb38bb2 /source/blender/makesrna/intern/rna_cloth.c
parent09015aa8aba073326e5c30060c5f8476bb0d5b24 (diff)
RNA fixes provided by Thomas Dinges / DingTo - Thanks!
Diffstat (limited to 'source/blender/makesrna/intern/rna_cloth.c')
-rw-r--r--source/blender/makesrna/intern/rna_cloth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_cloth.c b/source/blender/makesrna/intern/rna_cloth.c
index 94537eecba9..919ae210801 100644
--- a/source/blender/makesrna/intern/rna_cloth.c
+++ b/source/blender/makesrna/intern/rna_cloth.c
@@ -196,7 +196,7 @@ static void rna_def_cloth_sim_settings(BlenderRNA *brna)
prop= RNA_def_property(srna, "pin_stiffness", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_sdna(prop, NULL, "goalspring");
- RNA_def_property_range(prop, 0.0f, 0.50);
+ RNA_def_property_range(prop, 0.0f, 50.0);
RNA_def_property_ui_text(prop, "Pin Stiffness", "Pin (vertex target position) spring stiffness.");
prop= RNA_def_property(srna, "quality", PROP_INT, PROP_NONE);