plantuml / plantuml

Generate diagrams from textual description
https://plantuml.com
Other
9.73k stars 881 forks source link

Activity Diagram: Style of multiline Box #1697

Closed AndreasMatthias closed 2 months ago

AndreasMatthias commented 2 months ago
@startuml
<style>
.procedure {
   BackgroundColor #lightblue
}
</style>
start
: foo; <<procedure>>
: bar
  bar
  bar; <<procedure>>
: xox\nxox\nxox; <<procedure>>
stop
@enduml

activity

All 3 procedure boxes should have the same style, but the style is not applied onto the second box.

Example on Online Server

The-Lum commented 2 months ago

Hi @AndreasMatthias,

Thanks for the report; See similar issue/request here:

Regards, Th.

The-Lum commented 2 months ago

Duplicate of #1534

arnaudroques commented 2 months ago

Thanks for the report. This should be fixed with last snapshot. Please reopen this issue if needed.

AndreasMatthias commented 2 months ago

Works very well. Thank you.