From dd944e88eebfcdd72693987084bb2c2799fc3bdb Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 4 Apr 2008 15:57:13 +0000 Subject: [PATCH] wire was being drawn for solid curve objects in editmode when it should not have been. --- source/blender/src/drawobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/src/drawobject.c b/source/blender/src/drawobject.c index 243602d01ab..fadf0991873 100644 --- a/source/blender/src/drawobject.c +++ b/source/blender/src/drawobject.c @@ -2797,7 +2797,7 @@ static int drawDispList(Base *base, int dt) glLightModeli(GL_LIGHT_MODEL_TWO_SIDE, 0); drawDispListsolid(lb, ob); } - if(ob==G.obedit && cu->bevobj==NULL && cu->taperobj==NULL) { + if(ob==G.obedit && cu->bevobj==NULL && cu->taperobj==NULL && cu->ext1 == 0.0 && cu->ext2 == 0.0) { cpack(0); draw_index_wire= 0; drawDispListwire(lb);