[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [26467] trunk/blender/source/blender/ editors/mesh/mesh_ops.c: Fix #20897: ctrl + click extrude now works again with "select with"

Brecht Van Lommel brecht at blender.org
Sun Jan 31 12:01:14 CET 2010


Revision: 26467
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=26467
Author:   blendix
Date:     2010-01-31 12:01:13 +0100 (Sun, 31 Jan 2010)

Log Message:
-----------
Fix #20897: ctrl + click extrude now works again with "select with"
set to left mouse, using the right mouse button, same as in 2.4x.

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

Modified: trunk/blender/source/blender/editors/mesh/mesh_ops.c
===================================================================
--- trunk/blender/source/blender/editors/mesh/mesh_ops.c	2010-01-31 09:49:46 UTC (rev 26466)
+++ trunk/blender/source/blender/editors/mesh/mesh_ops.c	2010-01-31 11:01:13 UTC (rev 26467)
@@ -278,7 +278,7 @@
 	WM_keymap_add_item(keymap, "MESH_OT_split", YKEY, KM_PRESS, 0, 0);
 
 	/* use KM_CLICK because same key is used for tweaks */
-	WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", LEFTMOUSE, KM_CLICK, KM_CTRL, 0);
+	WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", ACTIONMOUSE, KM_CLICK, KM_CTRL, 0);
 	
 	WM_keymap_add_item(keymap, "MESH_OT_delete", XKEY, KM_PRESS, 0, 0);
 	WM_keymap_add_item(keymap, "MESH_OT_delete", DELKEY, KM_PRESS, 0, 0);





More information about the Bf-blender-cvs mailing list