On Tue, 1 Sep 2026 18:33:25 GMT, Andy Goryachev <[email protected]> wrote:
>> John Hendrikx has updated the pull request incrementally with one additional
>> commit since the last revision:
>>
>> Fix regression when drawing empty arc with round cap
>
> modules/javafx.graphics/src/main/java/javafx/scene/canvas/GraphicsContext.java
> line 1409:
>
>> 1407: public void arcTo(double x1, double y1, double x2, double y2,
>> double radius) {
>> 1408: if (path.getNumCommands() == 0) {
>> 1409: moveTo(x1, y1);
>
> this needs lineTo(): this code will not render the expected dot using a round
> cap.
ah, I was too eager here, fixed now
-------------
PR Review Comment: https://git.openjdk.org/jfx/pull/1969#discussion_r3940647138