[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [58107] trunk/blender/source/blender/ editors/mesh/editmesh_tools.c: fix error where if you tried to bridge an odd number of loops after bridging pairs , there was no way to change the options.

Campbell Barton ideasman42 at gmail.com
Tue Jul 9 08:34:54 CEST 2013


Revision: 58107
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=58107
Author:   campbellbarton
Date:     2013-07-09 06:34:54 +0000 (Tue, 09 Jul 2013)
Log Message:
-----------
fix error where if you tried to bridge an odd number of loops after bridging pairs, there was no way to change the options.
eventually I think the operator api should support this but for now return finished.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/mesh/editmesh_tools.c

Modified: trunk/blender/source/blender/editors/mesh/editmesh_tools.c
===================================================================
--- trunk/blender/source/blender/editors/mesh/editmesh_tools.c	2013-07-09 06:21:45 UTC (rev 58106)
+++ trunk/blender/source/blender/editors/mesh/editmesh_tools.c	2013-07-09 06:34:54 UTC (rev 58107)
@@ -4007,8 +4007,9 @@
 	}
 
 	if (!EDBM_op_finish(em, &bmop, op, true)) {
-		return OPERATOR_CANCELLED;
-
+		/* grr, need to return finished so the user can select different options */
+		//return OPERATOR_CANCELLED;
+		return OPERATOR_FINISHED;
 	}
 	else {
 		EDBM_update_generic(em, true, true);




More information about the Bf-blender-cvs mailing list