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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-04-04 19:57:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-04-04 19:57:13 +0400
commitdd944e88eebfcdd72693987084bb2c2799fc3bdb (patch)
tree3317ec15db484d8dd811edc5f43afc34dea9e6e0 /source
parente8e100738674cba65f70c7be49e0fb210645c06a (diff)
wire was being drawn for solid curve objects in editmode when it should not have been.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/drawobject.c2
1 files changed, 1 insertions, 1 deletions
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);