commit 14e043c9ffeba2db0f041d5b7fdba092c92e5cb4
parent 7041c240b87e9c02ab560d9baa0beb4150a18dc2
Author: Morel BĂ©renger <berengermorel76@gmail.com>
Date: Fri, 27 Nov 2020 02:29:16 +0100
uml: fix relations not showing tails
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/uml b/uml
@@ -25,7 +25,7 @@ function fun( overload ) {
}
function relation( from, to, tail, head, label ) {
- printf( "%s -> %s [ arrowtail = \"%s\", arrowhead = \"%s\"", from, to, tail, head );
+ printf( "%s -> %s [ dir = \"both\", arrowtail = \"%s\", arrowhead = \"%s\"", from, to, tail, head );
if( label != "" )
{
printf( ", label = \"%s\"", label );