skinparam handwritten true is not inherited within embedded diagram

0 votes
asked Feb 22, 2019 in Bug by boshka (3,940 points)
edited Feb 22, 2019 by boshka
Please have a look:

http://www.plantuml.com/plantuml/uml/JOv13i9G24JtSmekq2iqlGeAyHCj6ZwDYwPtbwP6o-hn29EPUdBaCZ_Gx-Ol3fwfiSixB5ETCXO5mCDuWJzJAUpM4bXNN8THpexs-QKSwodg4DQfNhxiJUkc0dNPjMBR_ZmLLR4F

I guess, that since we already inherit some parameters within embedded diagrams we should inherit this one, and may be other params too. Though we probably would want to have an ability to disable inheritance from the parent diagram via a new skinparam. What would you think?

A related question is: http://forum.plantuml.net/8863/skinparam-notebackgroundcolor-honored-embedded-diagram

1 Answer

0 votes
answered Feb 25, 2019 by plantuml (294,960 points)
Thanks for the feedback.

This should be fixed in last beta http://beta.plantuml.net/plantuml.jar
commented Mar 6, 2019 by boshka (3,940 points)
thank you! is it supported in the latest release  plantuml.1.2019.2.jar?
commented Mar 6, 2019 by plantuml (294,960 points)
Yes it it. Tell us if it's not working for you.
commented Mar 6, 2019 by boshka (3,940 points)
edited Mar 6, 2019 by boshka
seems it is not working in my case.
Have a component diagram with a note that embedded sequence.
the handwritten param is in the component diagram and works fine in it, but it is still not inherited in the embedded sequence
commented Mar 6, 2019 by plantuml (294,960 points)
Ok, could you post here a simple example showing the issue ? Thanks!
commented Mar 6, 2019 by boshka (3,940 points)
ok, it does not work in this case:

@startuml
        skinparam handwritten true
    component a {

    }
    note top of a
        handwritten is OK
    end note
   
    note right of a
        {{
                    !include_many some_sequence.iuml
        }}
    end note
@enduml
...