Font Style not working on title

0 votes
asked Feb 6, 2020 in Bug by Cédric (140 points)

Hello,

When i try to configure font for title it work on an empty diagram

working

@startuml

skinparam title{
  BackgroundColor red
}
skinparam title{
  BorderRoundCorner 15
  BorderThickness 2
  BackgroundColor #BDBDBD
  Fontsize 50
  FontColor Blue
}

title TestTitle

@enduml

but not anymore when i add element of sequence

not working

@startuml

skinparam title{
  BackgroundColor red
}
skinparam title{
  BorderRoundCorner 15
  BorderThickness 2
  BackgroundColor #BDBDBD
  Fontsize 50
  FontColor Blue
}

title TestTitle

a ->b
@enduml

1 Answer

+1 vote
answered Feb 6, 2020 by plantuml (294,960 points)
selected Feb 7, 2020 by Cédric
 
Best answer
Thanks for the feedback.

This should be fixed in last beta http://beta.plantuml.net/plantuml.jar

Tell us if it's not working for you!
commented Feb 7, 2020 by Cédric (140 points)
It's works thank you
...