Activity Diagram - Swimlanes - Issue with vertical alignment of activity labels

0 votes
asked Apr 5 in Question / help by swimmer
edited Apr 5

Hi Everyone,

I'm struggling to understand why activity labels are not vertically aligned when building activity diagram using swimlanes. 

Here mi my example:

@startuml
skinparam style strictuml
|Team A|
start
:init;
|Team B|
if (valid?) is (yes) then
    if (special case?) is (yes) then
        :send question;
        |Team A|
        :provide info;
        |Team B|
        :special object created;
    else (no)
        :object created;
    endif
        :finishing;
else (no)
    |Team B|
    :reject;
    stop
endif
    |Team A|
    :use new object;
    end
@enduml

The issue here is that "provide info" label is for some reason brought to the left side in "Team A" swimlane. 
If I remove "provide info" label then all labels in "Team A" are perfectly horizontally aligned.

Am I doing something wrong or is there any trick to fix that?

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.
...