From 6ddd2549edfd65ec21fe54efae21e963b83fba1e Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Tue, 24 Feb 2015 20:12:21 +0100 Subject: Fix T43535 - weight paint issues Two issues in this report: * Shift-F key conflict between painting and selecting mirrored bone (moved select mirrored to ctrl-shift-F) * It was possible to display texture overlay in weight painting, even though the mode does not support textures yet. --- source/blender/editors/armature/armature_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/armature') diff --git a/source/blender/editors/armature/armature_ops.c b/source/blender/editors/armature/armature_ops.c index 574258de4f6..c80953d6737 100644 --- a/source/blender/editors/armature/armature_ops.c +++ b/source/blender/editors/armature/armature_ops.c @@ -366,7 +366,7 @@ void ED_keymap_armature(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "POSE_OT_select_linked", LKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "POSE_OT_select_grouped", GKEY, KM_PRESS, KM_SHIFT, 0); - WM_keymap_add_item(keymap, "POSE_OT_select_mirror", FKEY, KM_PRESS, KM_SHIFT, 0); + WM_keymap_add_item(keymap, "POSE_OT_select_mirror", FKEY, KM_PRESS, KM_SHIFT | KM_CTRL, 0); WM_keymap_add_item(keymap, "POSE_OT_constraint_add_with_targets", CKEY, KM_PRESS, KM_CTRL | KM_SHIFT, 0); WM_keymap_add_item(keymap, "POSE_OT_constraints_clear", CKEY, KM_PRESS, KM_CTRL | KM_ALT, 0); -- cgit v1.2.3