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:
authorCampbell Barton <ideasman42@gmail.com>2011-09-12 19:29:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-12 19:29:37 +0400
commit124d16aa1473fce26f80ad192fc2fb8a6401bd57 (patch)
tree7448f69a2b96e727925723835f12ee9bee274301 /source/blender
parent97c78e25f00391e068b1247fa32b47fe2bf244e8 (diff)
correct bad maximum value, for wile-loop node, outside the range of a short.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 49a0458977a..0554e4d00ad 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -922,7 +922,7 @@ static void def_whileloop(StructRNA *srna)
prop = RNA_def_property(srna, "max_iterations", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "custom1");
- RNA_def_property_range(prop, 0.0f, 10000000.0f);
+ RNA_def_property_range(prop, 0.0f, SHRT_MAX);
RNA_def_property_ui_text(prop, "Max. Iterations", "Limit for number of iterations");
RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_NodeGroup_update");
}