[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27533] branches/render25/source/blender/ editors/mesh/mesh_data.c: adding faces was setting the wrong flag, smooth rather then selected.

Campbell Barton ideasman42 at gmail.com
Tue Mar 16 13:44:17 CET 2010


Revision: 27533
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=27533
Author:   campbellbarton
Date:     2010-03-16 13:44:17 +0100 (Tue, 16 Mar 2010)

Log Message:
-----------
adding faces was setting the wrong flag, smooth rather then selected.

Modified Paths:
--------------
    branches/render25/source/blender/editors/mesh/mesh_data.c

Modified: branches/render25/source/blender/editors/mesh/mesh_data.c
===================================================================
--- branches/render25/source/blender/editors/mesh/mesh_data.c	2010-03-16 10:18:19 UTC (rev 27532)
+++ branches/render25/source/blender/editors/mesh/mesh_data.c	2010-03-16 12:44:17 UTC (rev 27533)
@@ -628,7 +628,7 @@
 	/* set default flags */
 	mface= &mesh->mface[mesh->totface];
 	for(i=0; i<len; i++, mface++)
-		mface->flag= SELECT;
+		mface->flag= ME_FACE_SEL;
 
 	mesh->totface= totface;
 }





More information about the Bf-blender-cvs mailing list