Sequence diagrams: Swimlines disappear in multi-page diagrams with ellipsis

0 votes
asked Apr 14, 2015 in Bug by hemkond (120 points)

When creating a multi-page sequence diagram that includes ellipsis (in this case not on the first page), first page(s) loose the swimlanes. Bug present in version 8022.

The following reproduces the bug:

@startuml
    box "Module-1"
        participant class_1
     end box
    box "Module-2"
        participant class_2
     end box

    class_1 -> class_2
    class_2 -> class_1

    newpage Second Page
    class_1 -> class_2
    'The following line causes swimlanes on first page to disappear
    ...
    class_2 -> class_1
@enduml

Commenting out the line with ellipsis brings back the swimlanes in first page.

PS: Thanks for this great software.

 

2 Answers

0 votes
answered Apr 18, 2015 by plantuml (295,000 points)
Thanks for the feedback!

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

This will be included in next official release.

Regards,
0 votes
answered Apr 20, 2015 by plantuml (295,000 points)
This has been fixed in V8023.

Thanks again!
...