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
path: root/source
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2003-11-08 21:37:28 +0300
committerTon Roosendaal <ton@blender.org>2003-11-08 21:37:28 +0300
commitb4c25d241b052d25bea3bfcc92984c7955b4104f (patch)
tree34038cba8ad602b13cb5d234363593617910c78f /source
parent602fe19b6f774d692c0216bb2ae4925cad0ce496 (diff)
- another fix because of the stricter 'qualifier key' checking;
ctrl+mouseclick didnt work to select objects in editmode, needed for making vertex parents.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/space.c4
1 files 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();