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:
authorRoel Spruit <roel@spruitje.nl>2003-10-29 01:46:34 +0300
committerRoel Spruit <roel@spruitje.nl>2003-10-29 01:46:34 +0300
commita496ca4db3c27639fca99b6d6375cd57201719ce (patch)
tree04ea24e4e2a5244ce1341293732e05eb319d45f5
parent10c452e13e19f95be649735aa29efeab8eea3734 (diff)
faceloop select adds to selection by default now. I know this is not standard behaviour but there isn't a nice way to implement the normal "Shift adds to selection" for this yet..
-rw-r--r--source/blender/src/editmesh.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/source/blender/src/editmesh.c b/source/blender/src/editmesh.c
index 6702c83edb5..789d6ac9212 100644
--- a/source/blender/src/editmesh.c
+++ b/source/blender/src/editmesh.c
@@ -2154,10 +2154,6 @@ void loop(int mode)
eed=G.eded.first;
while(eed) {
eed->f &= ~(2|4|8|32);
- if(mode!='s'){
- eed->v1->f &= ~1;
- eed->v2->f &= ~1;
- }
eed->v1->f &= ~(2|8|16);
eed->v2->f &= ~(2|8|16);
eed= eed->next;
@@ -2484,11 +2480,7 @@ void loop(int mode)
/*----------Select Loop------------*/
if(mode=='s' && start!=NULL && (event==LEFTMOUSE || event==RETKEY)){
- EditVert *eve;
-
- /* deselectall */
- for(eve= G.edve.first; eve; eve= eve->next) eve->f&= ~1;
-
+
evl= G.edvl.first;
while(evl){
if(evl->f & 8){