Fix: When transforming GP strokes in "Local" mode, the strokes would get obscured by

the transform constraint lines
This commit is contained in:
2017-09-26 12:50:37 +13:00
parent f25541be38
commit e7395c75d5

View File

@@ -851,6 +851,13 @@ static void drawObjectConstraint(TransInfo *t)
}
}
if (t->options & CTX_GPENCIL_STROKES) {
/* only draw a constraint line for one point, otherwise we can't see anything */
if ((options & DRAWLIGHT) == 0) {
break;
}
}
if (t->flag & T_OBJECT) {
copy_v3_v3(co, td->ob->obmat[3]);
axismtx = td->axismtx;