From 732f608e33df86e973fa3f3c5059a3be0c6cea67 Mon Sep 17 00:00:00 2001 From: Chris Want Date: Sun, 30 Jan 2005 21:33:12 +0000 Subject: [PATCH] Doing the hotkey modifiers for select non-manifold the Ton way. --- source/blender/src/space.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/blender/src/space.c b/source/blender/src/space.c index 3f69d10a5b1..3835a0df70e 100644 --- a/source/blender/src/space.c +++ b/source/blender/src/space.c @@ -1354,8 +1354,7 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt) else if((G.qual==0) || (G.qual==LR_CTRLKEY)) { mirrormenu(); } - if ( !(~G.qual & - (LR_SHIFTKEY | LR_ALTKEY | LR_CTRLKEY)) ) { + if ( G.qual == (LR_SHIFTKEY | LR_ALTKEY | LR_CTRLKEY) ) { if(G.obedit->type==OB_MESH) select_non_manifold(); } }