linetype ortho changes arrow direction

0 votes
asked Oct 30, 2018 in Bug by pebs74 (120 points)

I've found a bug which changes some arrow directions when using "skinparam linetype ortho".

Example:

@startuml
class "A" {
}
class "B" {
}
"A" #-up-^ "B"
@enduml

works as expected:

On the contrary:

@startuml
skinparam linetype ortho
class "A" {
}
class "B" {
}
"A" #-up-^ "B"
@enduml

draws the line from B to A:

It happens with any kind of origin symbol on the arrow (#,*,||...), but works fine without origin symbols:

@startuml
skinparam linetype ortho
class "A" {
}
class "B" {
}
"A" -up-^ "B"
@enduml

renders:

All renderings done using https://www.planttext.com/

1 Answer

0 votes
answered Oct 16, 2019 by cprn (230 points)
This is fixed now, right...? All images in the question look OK.
...