Stereotype LifeLine styles are not working with teoz engine

0 votes
asked Aug 3 in Bug by vic123 (120 points)

There was similar issue on LifeLineBorderColor skinparam that seem to be broken too.
https://forum.plantuml.net/12288/lifelinebordercolor-stereotype-not-working.

<<alice_style>> LifeLine has no effect when teoz is turned on. Please comment out `!pragma teoz true` to see the difference.

Both global LifeLine styles and stereotype styles except LifeLine are working correctly.
I'm using plantuml-1.2024.5.jar, but see same behavior on the online server too.
Syntax for the sample was taken from https://forum.plantuml.net/2794/solid-life-line-in-sequence-diagrams.

@startuml
!pragma teoz true
<STYLE>
sequenceDiagram {
    FontColor blue
    LineColor blue
    LineThickness 2
    LineStyle 1-1
    Lifeline {
      linecolor red
      linestyle solid
      lineThickness 3
    }
  .alice_style {
    FontColor green
    LineColor green
    LineStyle 1-4
    lineThickness 10
    Lifeline {
      linecolor green
      linestyle 2
      lineThickness 10
    }
  }
}
</STYLE>
participant Bob
entity Alice <<alice_style>>
Bob -> Alice : hello
@enduml

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