When adding three consecutive notes in sequence diagram, one appears missing, and the others out of order

0 votes
asked Sep 30, 2016 in Closed bug by rpellowski (140 points)

This UML design:

a->b
note right : 1. right
note over a,b : 2. over
note left : 3. left
a<-b

produces a diagram where note #1 is missing and #3 is before #2

1 Answer

0 votes
answered Oct 13, 2016 by plantuml (295,000 points)
selected Mar 1, 2018 by rpellowski
 
Best answer

This has been somehow fixed in last beta: https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

Note that you have to change your diagram definition:

a->b
note right : 1. right
note left : 3. left
note over a,b : 2. over
a<-b

Is this what you are expecting ?

...