Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-01-29 23:53:19 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-01-29 23:53:19 +0300
commit3a3fe8a4805ca0f1db0eec3cca18e1c70b765080 (patch)
tree601356fb0f27176ec119cfca12880f8c7afeef34
parent3d3023126a6a90491106afe1c8b35dea4ae7c029 (diff)
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.
-rw-r--r--source/blender/src/space.c3
1 files changed, 2 insertions, 1 deletions
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))