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

by the transform constraint lines

Ported over e7395c75d504af2c2f720f43ea27b93e04a378e4 from the
greasepencil-object branch. I should've fixed this ages ago, but
couldn't figure out why at the time.
This commit is contained in:
Joshua Leung 2017-09-26 12:56:24 +13:00 committed by Bastien Montagne
parent ca236408f3
commit 99e4c819f7
1 changed files with 7 additions and 0 deletions

View File

@ -831,6 +831,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;