Put note to left/right of partition box in Activity Diagram inside of if

0 votes
asked May 1, 2018 in Bug by ssnyder (230 points)

I have the following code:

@startuml
:start node;
if (something is true) then (yes)
    partition example {
        :some other node;
        :and another;
        note left: this works
    }
    note left: this is in the wrong place
endif
:end of my example;
@enduml

I've tried rendering this using the latest Eclipse plugin and the latest plantuml.jar, both show the note that is clearly after the partition has ended.  

However, if I move the note to AFTER the endif, it shows correctly (I suspect it is showing to the left of the if, and luckily it is positioned near my partition)

Can we please fix the note that should be to the left of the partition inside of the if?

Thanks!

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:

[Antispam2 Feature: please please wait 1 or 2 minutes (this message will disappear) before pressing the button otherwise it will fail](--------)
To avoid this verification in future, please log in or register.
...