https://issues.apache.org/bugzilla/show_bug.cgi?id=52297
Jared <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW --- Comment #5 from Jared <[email protected]> --- In looking at the failing PPT, this appears to be the failure in TextPainter.java: elem[i]._bulletOffset > elem[i]._textOffset Might change: if(elem[i]._bullet != null){ graphics.drawString(elem[i]._bullet.getIterator(), (float)(pen.x + elem[i]._bulletOffset), (float)pen.y); } To: if(elem[i]._bullet != null){ graphics.drawString(elem[i]._bullet.getIterator(), (float)(pen.x + elem[i]._bulletOffset), (float)pen.y); if (elem[i]._bulletOffset >= elem[i]._textOffset) { elem[i]._textOffset+= elem[i]._bulletOffset; } } I will try this out locally. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
