Commit: fa761dfe6d5cd1467f8fea5dcf808ffe9a8ddcb7
Author: Campbell Barton
Date:   Mon Apr 20 21:10:52 2015 +1000
Branches: master
https://developer.blender.org/rBfa761dfe6d5cd1467f8fea5dcf808ffe9a8ddcb7

Fix T44419: extruding when using lasso deselect

===================================================================

M       source/blender/editors/mesh/mesh_ops.c

===================================================================

diff --git a/source/blender/editors/mesh/mesh_ops.c 
b/source/blender/editors/mesh/mesh_ops.c
index 126d1cb..2855af0 100644
--- a/source/blender/editors/mesh/mesh_ops.c
+++ b/source/blender/editors/mesh/mesh_ops.c
@@ -409,7 +409,7 @@ void ED_keymap_mesh(wmKeyConfig *keyconf)
        /* use KM_CLICK because same key is used for tweaks */
        kmi = WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", 
ACTIONMOUSE, KM_CLICK, KM_CTRL, 0);
        RNA_boolean_set(kmi->ptr, "rotate_source", true);
-       kmi = WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", 
ACTIONMOUSE, KM_PRESS, KM_SHIFT | KM_CTRL, 0);
+       kmi = WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", 
ACTIONMOUSE, KM_CLICK, KM_SHIFT | KM_CTRL, 0);
        RNA_boolean_set(kmi->ptr, "rotate_source", false);
 
        WM_keymap_add_menu(keymap, "VIEW3D_MT_edit_mesh_delete", XKEY, 
KM_PRESS, 0, 0);

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to