plantuml / backlog

Contains all issues for plantuml that are not currently working-in-progress
0 stars 0 forks source link

Minor rendering issue on Activity diagram with nested splits and swimlanes #31

Open rbakhshi opened 5 years ago

rbakhshi commented 5 years ago

This is minor rendering issue. In the diagram below, notice the aggregate at the end of nested split, it has moved into the "employee" swimlane.

This is beta 19

Code

@startuml

|Manager|
start
:start here;

split
    :do this;

    split
        :maybe this;
    split again
        :well what about this one?;
    end split

split again
    :or this one;
split again
    |Employee|
    :some other;
end split
|Manager|
stop

@enduml

Diagram

image