mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-26 06:46:45 +00:00
transparent is no color in latex, fixes #974
This commit is contained in:
parent
c9137be051
commit
8add65d317
@ -549,7 +549,7 @@ public class TikzGraphics {
|
||||
if (color != null)
|
||||
sb.append("color=" + getColorName(color) + ",");
|
||||
|
||||
if (fillcolor != null)
|
||||
if (fillcolor != null && !HColorUtils.isTransparent(fillcolor))
|
||||
sb.append("fill=" + getColorName(fillcolor) + ",");
|
||||
|
||||
sb.append("line width=" + thickness + "pt] " + couple(x, y) + " ellipse (" + format(width) + "pt and "
|
||||
|
Loading…
Reference in New Issue
Block a user