[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [42344] branches/bmesh/blender/source/ blender/editors/mesh/bmesh_tools.c: Reverse default direction of " rotate colors" to match the (only rotation direction) of rotate colors in trunk

Andrew Wiggin ender79bl at gmail.com
Fri Dec 2 17:57:23 CET 2011


Revision: 42344
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=42344
Author:   ender79
Date:     2011-12-02 16:57:22 +0000 (Fri, 02 Dec 2011)
Log Message:
-----------
Reverse default direction of "rotate colors" to match the (only rotation direction) of rotate colors in trunk 

Modified Paths:
--------------
    branches/bmesh/blender/source/blender/editors/mesh/bmesh_tools.c

Modified: branches/bmesh/blender/source/blender/editors/mesh/bmesh_tools.c
===================================================================
--- branches/bmesh/blender/source/blender/editors/mesh/bmesh_tools.c	2011-12-02 16:56:05 UTC (rev 42343)
+++ branches/bmesh/blender/source/blender/editors/mesh/bmesh_tools.c	2011-12-02 16:57:22 UTC (rev 42344)
@@ -2005,7 +2005,7 @@
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 
 	/* props */
-	RNA_def_enum(ot->srna, "direction", direction_items, DIRECTION_CW, "Direction", "Direction to rotate edge around");
+	RNA_def_enum(ot->srna, "direction", direction_items, DIRECTION_CCW, "Direction", "Direction to rotate edge around");
 }
 
 void MESH_OT_colors_reverse(wmOperatorType *ot)




More information about the Bf-blender-cvs mailing list