skinparam ActivityBackgroundColor no more working for condition boxes

0 votes
asked May 3, 2017 in Bug by boshka (4,060 points)

skinparam ActivityBackgroundColor no more working for condition boxes:

@startuml
    skinparam ActivityBackgroundColor white
    start
    :set a;
    if(a==1?)then(yes)
    else(no)
    endif
    stop
@enduml

 

1 Answer

0 votes
answered May 3, 2017 by plantuml (298,440 points)

Sorry about that, but there is a new setting:

@startuml
skinparam ActivityBackgroundColor white
skinparam ActivityDiamondBackgroundColor white
start
:set a;
if(a==1?)then(yes)
else(no)
endif
stop
@enduml

Hope this help!

...