- fix for error in 2.31 release! in editmode, ctrl+rightmouse didnt allow
selection of other objects, for vertex parenting. I added comments to the call to remind.
This commit is contained in:
@@ -738,14 +738,16 @@ void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
|
|||||||
else if(G.obedit->type==OB_ARMATURE)
|
else if(G.obedit->type==OB_ARMATURE)
|
||||||
mouse_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(); // edge select
|
||||||
|
else if((G.obedit) && (G.qual == (LR_CTRLKEY|LR_ALTKEY|LR_SHIFTKEY)))
|
||||||
mouse_mesh(); // edge select
|
mouse_mesh(); // edge select
|
||||||
else if(G.obpose) {
|
else if(G.obpose) {
|
||||||
if (G.obpose->type==OB_ARMATURE)
|
if (G.obpose->type==OB_ARMATURE)
|
||||||
mousepose_armature();
|
mousepose_armature();
|
||||||
}
|
}
|
||||||
else if(G.qual==LR_CTRLKEY)
|
else if(G.qual==LR_CTRLKEY)
|
||||||
mouse_select();
|
mouse_select(); // also allow in editmode, for vertex parenting
|
||||||
else if(G.f & G_FACESELECT)
|
else if(G.f & G_FACESELECT)
|
||||||
face_select();
|
face_select();
|
||||||
else if( G.f & (G_VERTEXPAINT|G_TEXTUREPAINT))
|
else if( G.f & (G_VERTEXPAINT|G_TEXTUREPAINT))
|
||||||
|
|||||||
Reference in New Issue
Block a user