From b4c25d241b052d25bea3bfcc92984c7955b4104f Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Sat, 8 Nov 2003 18:37:28 +0000 Subject: [PATCH] - another fix because of the stricter 'qualifier key' checking; ctrl+mouseclick didnt work to select objects in editmode, needed for making vertex parents. --- source/blender/src/space.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/src/space.c b/source/blender/src/space.c index 52518d2b230..94e887688f9 100644 --- a/source/blender/src/space.c +++ b/source/blender/src/space.c @@ -733,8 +733,8 @@ void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt) else if(G.obedit->type==OB_ARMATURE) mouse_armature(); } - else if((G.obedit) && (G.qual & (LR_CTRLKEY|LR_ALTKEY))) - mouse_mesh(); + else if((G.obedit) && (G.qual==(LR_CTRLKEY|LR_ALTKEY))) + mouse_mesh(); // edge select else if(G.obpose) { if (G.obpose->type==OB_ARMATURE) mousepose_armature();