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
path: root/source
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2009-09-21 23:26:27 +0400
committerThomas Dinges <blender@dingto.org>2009-09-21 23:26:27 +0400
commita15ba4f35d9e6e7054164c40be03c438c1b42ca2 (patch)
tree87ce1fbcfc1c464037ce03c3e57eb321c24483c0 /source
parentc8a977db78d860e0134004083ee5e49d38dbc239 (diff)
* Wrong Property Range for Blur Size_Y.
Diffstat (limited to 'source')
-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 239fd894e4f..d80ebe2da05 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -540,7 +540,7 @@ static void def_cmp_blur(StructRNA *srna)
prop = RNA_def_property(srna, "sizey", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "sizey");
- RNA_def_property_range(prop, 1, 256);
+ RNA_def_property_range(prop, 0, 256);
RNA_def_property_ui_text(prop, "Size Y", "");
RNA_def_property_update(prop, 0, "rna_Node_update");