Rendering bug when labeling back arrow in state Diagram

0 votes
asked Jan 23, 2018 in Bug by anonymous

Check following diagram:

@startuml
[*] --> a
a --> b
b --> a : Label
b --> [*]
@enduml

Looks a bit broken to me, no?

1 Answer

0 votes
answered Jan 25, 2018 by Anthony-Gaudino (5,720 points)

A dirty fix:

[*] --> a
a --> b
b -[hidden]-> a : aaa
b --> a : Label
b --> [*]
...