You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's say we have a class composition such as Text[DropShadow[Stroke[Color]]]
Where Color is the only class with a specific inspector editor.
How is inspector supposed to draw dropshadow properties?
Currently, it doesn't show its property Stroke because the inspector getPropertyContainers depth limit is 1. Going further one more level (see the example below) just makes Stroke appear in a different container.
I have come up with a solution, but it relies on knowing which editors are available. It fetches the properties when it's populating an already separate (own) container (e.g., dropshadow) and custom editor rule isn't set nor available. Syncing isn't working yet though. Not sure if multiple definitions need some work as well.
Problem
Let's say we have a class composition such as
Text[DropShadow[Stroke[Color]]]
Where Color is the only class with a specific inspector editor.
How is inspector supposed to draw dropshadow properties?
Currently, it doesn't show its property Stroke because the inspector
getPropertyContainers
depth limit is 1. Going further one more level (see the example below) just makes Stroke appear in a different container.Which results in:

Expected Behavior
It's open to discussion, but showing the stroke properties inside dropshadow container is a possible solution.
The text was updated successfully, but these errors were encountered: