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:
-rw-r--r--source/blender/src/editmesh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/editmesh.c b/source/blender/src/editmesh.c
index d3277edafe2..ddc3be4addd 100644
--- a/source/blender/src/editmesh.c
+++ b/source/blender/src/editmesh.c
@@ -568,7 +568,7 @@ static void edge_drawflags(void)
if(e1->f2<3) e1->f2+= 1;
if(e2->f2<3) e2->f2+= 1;
if(e3->f2<3) e3->f2+= 1;
- if(e4 && e4->f<3) e4->f2+= 1;
+ if(e4 && e4->f2<3) e4->f2+= 1;
if(e1->vn==0) e1->vn= (EditVert *)efa;
if(e2->vn==0) e2->vn= (EditVert *)efa;
@@ -584,7 +584,7 @@ static void edge_drawflags(void)
if(efa->e1->f2>=2) efa->e1->f2= 1;
if(efa->e2->f2>=2) efa->e2->f2= 1;
if(efa->e3->f2>=2) efa->e3->f2= 1;
- if(efa->e4 && efa->e4->f>=2) efa->e4->f2= 1;
+ if(efa->e4 && efa->e4->f2>=2) efa->e4->f2= 1;
efa= efa->next;
}