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:
authorMartin Poirier <theeth@yahoo.com>2003-10-28 20:47:04 +0300
committerMartin Poirier <theeth@yahoo.com>2003-10-28 20:47:04 +0300
commitf7b513ea7ae8050df833e17e66ace228abce2644 (patch)
tree677b1b5876c8a4ed1395c8178927f8af1d3a808b /source/blender/src
parent5bd910ae2cddb5ad409038edf0182b11841c1b77 (diff)
Fixed Edge shift selection with Ctrl-Alt-Shift-Right click
Please, if you find anymore bugs like this, report them.
Diffstat (limited to 'source/blender/src')
-rw-r--r--source/blender/src/space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 326175bef32..5e22463a1c6 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -730,7 +730,7 @@ 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)))
+ else if((G.obedit) && (G.qual & (LR_CTRLKEY|LR_ALTKEY)))
mouse_mesh();
else if(G.obpose) {
if (G.obpose->type==OB_ARMATURE)