From 3a3fe8a4805ca0f1db0eec3cca18e1c70b765080 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 29 Jan 2008 20:53:19 +0000 Subject: Bug #8178: in particle edit mode, select linked under the mouse should only work with L-key, not ctrl+L, makes it seems as if ctrl+L type selected linked is not working correct, while it is just not implemented. --- source/blender/src/space.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/src/space.c b/source/blender/src/space.c index e90c2e99d0a..e8225e3da90 100644 --- a/source/blender/src/space.c +++ b/source/blender/src/space.c @@ -2173,7 +2173,8 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt) select_linked_tfaces(2); } else if(G.f & G_PARTICLEEDIT) { - PE_select_linked(); + if(G.qual==0) + PE_select_linked(); } else { if((G.qual==0)) -- cgit v1.2.3