Bug: skinparam shadowing false causing error "bad value in ymirror" when drawing a component in a component

0 votes
asked Jan 10, 2022 in Bug by anonymous

Works:

@startuml
component A {
  component B
}
@enduml

Does not work:

@startuml
skinparam shadowing false
component A {
  component B
}
@enduml

The latter will cause an error "BAD VALUE IN YMirror"

1 Answer

0 votes
answered Jan 10, 2022 by plantuml (295,000 points)

Which version are you using ?

@startuml
version
@enduml

It seems to work with last version.

commented Jan 10, 2022 by The-Lu (64,340 points)

Hello A.,

Could you use also style, as:

@startuml
<style>
root {
  shadowing 0
}
</style>

component A {
  component B
}
@enduml

Regards.

...