Class HeaderBackgroundColor doesn't work when RoundCorner is defined

0 votes
asked Apr 9, 2020 in Question / help by DJas

Hi,

I am making a class diagram using following script, HeaderBackgroundColor color does not work if round corner is defined. If I comment RoundCorner it works:

@startuml
skinparam RoundCorner 10

skinparam class {
    HeaderBackgroundColor WhiteSmoke
    BackgroundColor White
    BorderColor Black
    ArrowColor Black
}

hide circle

class "User\n(User in our system)" as user {
    <size:12><&key></size> id INTEGER
    username VARCHAR[32]
    password VARCHAR[64]
}

class "Session\n(session for user)" as session {
    <size:12><&key></size> id INTEGER
    user_id INTEGER
    session_id) VARCHAR[64]
}

user ||--|{ session : "A user may have\n many sessions"

@enduml

Please let me know, is it a bug or I am doing something wrong.

1 Answer

0 votes
answered Apr 16, 2020 by plantuml (295,000 points)
 
Best answer
Thanks for the report.

This is fixed in last beta http://beta.plantuml.net/plantuml.jar and on the online server.

Tell us if it's not working for you !
commented Apr 18, 2020 by anonymous
Thanks,

It is working now.
...