[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [50288] trunk/blender/source/blender/ editors/uvedit/uvedit_ops.c: Fix #32447: mouse selection in uv editor is now no longer registerd as last

Brecht Van Lommel brechtvanlommel at pandora.be
Fri Aug 31 14:08:08 CEST 2012


Revision: 50288
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=50288
Author:   blendix
Date:     2012-08-31 12:08:08 +0000 (Fri, 31 Aug 2012)
Log Message:
-----------
Fix #32447: mouse selection in uv editor is now no longer registerd as last
operator, same as 3d view.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/uvedit/uvedit_ops.c

Modified: trunk/blender/source/blender/editors/uvedit/uvedit_ops.c
===================================================================
--- trunk/blender/source/blender/editors/uvedit/uvedit_ops.c	2012-08-31 12:08:04 UTC (rev 50287)
+++ trunk/blender/source/blender/editors/uvedit/uvedit_ops.c	2012-08-31 12:08:08 UTC (rev 50288)
@@ -2056,7 +2056,7 @@
 	ot->name = "Select";
 	ot->description = "Select UV vertices";
 	ot->idname = "UV_OT_select";
-	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
+	ot->flag = OPTYPE_UNDO;
 	
 	/* api callbacks */
 	ot->exec = select_exec;
@@ -2101,7 +2101,7 @@
 	ot->name = "Loop Select";
 	ot->description = "Select a loop of connected UV vertices";
 	ot->idname = "UV_OT_select_loop";
-	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
+	ot->flag = OPTYPE_UNDO;
 	
 	/* api callbacks */
 	ot->exec = select_loop_exec;
@@ -2203,7 +2203,7 @@
 	ot->name = "Select Linked Pick";
 	ot->description = "Select all UV vertices linked under the mouse";
 	ot->idname = "UV_OT_select_linked_pick";
-	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
+	ot->flag = OPTYPE_UNDO;
 
 	/* api callbacks */
 	ot->invoke = select_linked_pick_invoke;




More information about the Bf-blender-cvs mailing list