Freestyle: Fix for a wrong interpolation of stroke segment visibility.

This commit is contained in:
Tamito Kajiyama 2014-05-09 20:43:40 +09:00
parent d2ed5563d7
commit c4e277d53b
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ StrokeAttribute::StrokeAttribute(const StrokeAttribute& a1, const StrokeAttribut
for (int i = 0; i < 3; ++i)
_color[i] = (1 - t) * a1._color[i] + t * a2._color[i];
_visible = true;
_visible = a1.isVisible();
// FIXME: to be checked (and enhanced)
if ((a1._userAttributesReal) && (a2._userAttributesReal)) {