Additional text for elseif missing when using "useVerticalIf"

0 votes
asked Oct 22, 2021 in Bug by Daniel15 (140 points)

@startuml
start
if (foo) then (ok3)
  :f1;
(additional text) elseif (foo2) then (ok2)
  :f2;
else (notok)
  :f3;
endif
@enduml

Produces:

But if I add !pragma useVerticalIf on:

@startuml
!pragma useVerticalIf on
start
if (foo) then (ok3)
  :f1;
(additional text) elseif (foo2) then (ok2)
  :f2;
else (notok)
  :f3;
endif
@enduml

The "additional text" on the arrow between foo and foo2 is missing:

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