mirror of
https://github.com/SimpleMobileTools/Simple-Draw.git
synced 2025-06-05 21:59:17 +02:00
Use a round stroke line cap
This commit is contained in:
@ -52,6 +52,6 @@ public class Svg {
|
|||||||
writer.write(Integer.toHexString(options.color).substring(2)); // Skip the alpha FF
|
writer.write(Integer.toHexString(options.color).substring(2)); // Skip the alpha FF
|
||||||
writer.write("\" stroke-width=\"");
|
writer.write("\" stroke-width=\"");
|
||||||
writer.write(String.valueOf(options.strokeWidth));
|
writer.write(String.valueOf(options.strokeWidth));
|
||||||
writer.write("\"/>");
|
writer.write("\" stroke-linecap=\"round\"/>");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user