Diagram Title become bold using "scale"

0 votes
asked May 6, 2018 in Bug by anonymous

As said, if you specify the "scale" directive/command the rectangle title become bold.

NOT bold:
@startuml
/' scale 250*250 '/
left to right direction
skinparam packageStyle rect
:user:
rectangle Title{
:user:--( UC1 - Login )
}
@enduml

try it (PlantUML Demo Live): https://bit.ly/2rmSFPC

bold:
@startuml
scale 250*250
left to right direction
skinparam packageStyle rect
:user:
rectangle Title{
:user:--( UC1 - Login )
}
@enduml

try it (PlantUML Demo Live): https://bit.ly/2wi3Pdb

1 Answer

0 votes
answered May 16, 2018 by plantuml (295,000 points)
Not sure to understand the issue : both examples seem to be bold
...