1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-12-23 03:19:06 +00:00

Merge pull request #989 from soloturn/latex-start

transparent is no color in latex, fixes #974
This commit is contained in:
PlantUML 2022-04-09 14:57:17 +02:00 committed by GitHub
commit dc18a98c57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -549,7 +549,7 @@ public class TikzGraphics {
if (color != null) if (color != null)
sb.append("color=" + getColorName(color) + ","); sb.append("color=" + getColorName(color) + ",");
if (fillcolor != null) if (fillcolor != null && !HColorUtils.isTransparent(fillcolor))
sb.append("fill=" + getColorName(fillcolor) + ","); sb.append("fill=" + getColorName(fillcolor) + ",");
sb.append("line width=" + thickness + "pt] " + couple(x, y) + " ellipse (" + format(width) + "pt and " sb.append("line width=" + thickness + "pt] " + couple(x, y) + " ellipse (" + format(width) + "pt and "