1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-06 18:30:52 +00:00

Merge pull request #1506 from HeinrichAD/enhancement/seq-response-message-below-arrow

Let the user define if a message is a request or response
This commit is contained in:
PlantUML 2023-08-01 10:28:25 +02:00 committed by GitHub
commit e04d49a6c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -185,7 +185,7 @@ public class ComponentRoseArrow extends AbstractComponentRoseArrow {
}
private boolean isBelowForResponse() {
return belowForResponse && getDirection2() == ArrowDirection.RIGHT_TO_LEFT_REVERSE;
return belowForResponse && getArrowConfiguration().isReverseDefine();
}
private void drawDressing1(UGraphic ug, ArrowDressing dressing, ArrowDecoration decoration, double lenFull) {