Cyclic paths (or curve guides) were not drawn in Solid View when not
selected.
This commit is contained in:
Ton Roosendaal
2005-11-27 18:54:23 +00:00
parent 29db5673c9
commit ebb00c1ce5

View File

@@ -260,7 +260,7 @@ int displist_has_faces(ListBase *lb)
dl= lb->first;
while(dl) {
if ELEM4(dl->type, DL_INDEX3, DL_INDEX4, DL_SURF, DL_POLY)
if ELEM3(dl->type, DL_INDEX3, DL_INDEX4, DL_SURF)
return 1;
dl= dl->next;
}