Closed GoogleCodeExporter closed 8 years ago
Looks really good. Will definitely recommend for inclusion
Original comment by jtorc...@gmail.com
on 2 Mar 2012 at 1:25
StyleConstants.setUnderline(attrs, true);
StyleConstants.setForeground(attrs, colo
attrs.addAttribute(HTML.Attribute.HREF, url.toString());
must be:
StyleConstants.setUnderline(attrs, true);
StyleConstants.setForeground(attrs, color);
attrs.addAttribute(HTML.Attribute.HREF, url.toString());
and:
addHyperlink(new URL("http:// + m.group()), m.group(), Color.blue); // if the original doesnt have a protocol specified, insert http:// at the beggining
must be:
addHyperlink(new URL("http://" + m.group()), m.group(), Color.blue); // if the original doesnt have a protocol specified, insert http:// at the beggining
But with this fix it works perfect, thanks.
Original comment by dau...@googlemail.com
on 17 Mar 2012 at 11:52
Original comment by dau...@googlemail.com
on 17 Mar 2012 at 11:52
Original comment by dau...@googlemail.com
on 25 Mar 2012 at 9:12
Original issue reported on code.google.com by
Porling...@gmail.com
on 2 Mar 2012 at 12:39