Tasharen Entertainment Forum
Support => NGUI 3 Support => Topic started by: MigrantP on March 15, 2017, 01:20:51 PM
-
I just updated from NGUI 3.9.9 so I'm not sure when the problem was introduced, but UILabel's underline is not drawing an underline but a "fuzz" across the entire text. You can see the problem in a new project right in the example scene. Screenshot is attached. Thanks!
-
Note, this is on Unity 5.5.2f1.
-
Confirmed as a bug, thanks. I'll look into it and fix it.
-
One line fix... NGUIText line 1837:
if (strikethrough)
{
v0y = (-y + dash.v0.y);
v1y = (-y + dash.v1.y);
}
Comment out the 'if' statement leaving only:
v0y = (-y + dash.v0.y);
v1y = (-y + dash.v1.y);
-
That did the trick, thanks!