[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33584] trunk/blender/source/blender/ makesrna/intern/rna_nodetree.c: fix [#25155] Glare node > Simple star > Rotate 45 is always applied

Campbell Barton ideasman42 at gmail.com
Fri Dec 10 05:39:54 CET 2010


Revision: 33584
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33584
Author:   campbellbarton
Date:     2010-12-10 05:39:53 +0100 (Fri, 10 Dec 2010)

Log Message:
-----------
fix [#25155] Glare node > Simple star > Rotate 45 is always applied
from acob F (raccoon)

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_nodetree.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_nodetree.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2010-12-10 04:10:21 UTC (rev 33583)
+++ trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2010-12-10 04:39:53 UTC (rev 33584)
@@ -2020,7 +2020,7 @@
 	RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");
 	
 	prop = RNA_def_property(srna, "use_rotate_45", PROP_BOOLEAN, PROP_NONE);
-	RNA_def_property_boolean_sdna(prop, NULL, "angle", 1);
+	RNA_def_property_boolean_sdna(prop, NULL, "angle", 0);
 	RNA_def_property_ui_text(prop, "Rotate 45", "Simple star filter: add 45 degree rotation offset");
 	RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");
 	





More information about the Bf-blender-cvs mailing list