1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-22 21:15:09 +00:00

Fix qualifier label's association ends (#1467)

Otherwise, qualifier labels of qualified associations pointing left or up are drawn on the wrong end of the association.
This commit is contained in:
Dietrich Travkin 2023-07-24 14:48:23 +02:00
parent 85a6b1dada
commit bac7a4d751

View File

@ -103,8 +103,8 @@ public class LinkArg {
} }
public LinkArg getInv() { public LinkArg getInv() {
return new LinkArg(label, length, quantifier2, quantifier1, labeldistance, labelangle, visibilityModifier, kal1, return new LinkArg(label, length, quantifier2, quantifier1, labeldistance, labelangle, visibilityModifier, kal2,
kal2); kal1);
} }
public final Display getLabel() { public final Display getLabel() {