[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [23903] trunk/blender/source/blender/ editors/mesh/mesh_ops.c: Temporary remap extrude to Ctrl+Alt+Click, to avoid conflict with transform.

Martin Poirier theeth at yahoo.com
Sat Oct 17 16:45:49 CEST 2009


Revision: 23903
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=23903
Author:   theeth
Date:     2009-10-17 16:45:49 +0200 (Sat, 17 Oct 2009)

Log Message:
-----------
Temporary remap extrude to Ctrl+Alt+Click, to avoid conflict with transform.

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	2009-10-17 14:08:01 UTC (rev 23902)
+++ trunk/blender/source/blender/editors/mesh/mesh_ops.c	2009-10-17 14:45:49 UTC (rev 23903)
@@ -267,8 +267,10 @@
 	RNA_string_set(kmi->ptr, "name", "INFO_MT_mesh_add");
 	
 	WM_keymap_add_item(keymap, "MESH_OT_separate", PKEY, KM_PRESS, 0, 0);
-						/* use KM_RELEASE because same key is used for tweaks */
-	WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", LEFTMOUSE, KM_RELEASE, KM_CTRL, 0);
+						/* use KM_RELEASE because same key is used for tweaks
+						 * TEMPORARY REMAP TO ALT+CTRL TO AVOID CONFLICT 
+						 * */
+	WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", LEFTMOUSE, KM_RELEASE, KM_CTRL|KM_ALT, 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