From ba9b69aeb1a3ea58c8d3998461b2e2621925757c Mon Sep 17 00:00:00 2001 From: matthew16550 Date: Fri, 5 Nov 2021 16:03:15 +1100 Subject: [PATCH] Change svek line middle circle default color, from white to diagram background color --- src/net/sourceforge/plantuml/svek/SvekLine.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/net/sourceforge/plantuml/svek/SvekLine.java b/src/net/sourceforge/plantuml/svek/SvekLine.java index 0737aa300..7501720d1 100644 --- a/src/net/sourceforge/plantuml/svek/SvekLine.java +++ b/src/net/sourceforge/plantuml/svek/SvekLine.java @@ -101,7 +101,6 @@ import net.sourceforge.plantuml.ugraphic.UStroke; import net.sourceforge.plantuml.ugraphic.UTranslate; import net.sourceforge.plantuml.ugraphic.color.HColor; import net.sourceforge.plantuml.ugraphic.color.HColorNone; -import net.sourceforge.plantuml.ugraphic.color.HColorUtils; public class SvekLine implements Moveable, Hideable, GuideLine { @@ -234,7 +233,7 @@ public class SvekLine implements Moveable, Hideable, GuideLine { this.defaultThickness = skinParam.getThickness(LineParam.arrow, null); this.arrowLollipopColor = skinParam.getHtmlColor(ColorParam.arrowLollipop, null, false); if (arrowLollipopColor == null) { - this.arrowLollipopColor = HColorUtils.WHITE; + this.arrowLollipopColor = backgroundColor; } this.pragma = pragma; this.bibliotekon = bibliotekon; @@ -1042,4 +1041,4 @@ public class SvekLine implements Moveable, Hideable, GuideLine { return link.getStereotype(); } -} \ No newline at end of file +}