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
Describe the bug
If a Panel is created after any of its ancestors, the background of the panel will appear in front of (and likely obscure) those elements.
To Reproduce
Minimal repro:
LayoutRootlayout=new(true);TextObjectt=new(layout){Text="You can't see me",ContentColor= Colors.black };Panelp=new(layout, BuiltInSprites.CreateBox()){Child=t};
Expected behavior
Elements of a Panel should appear in front of the background regardless of creation order.
Additional context
This likely needs some flavor of explicit z-ordering.
The text was updated successfully, but these errors were encountered:
Describe the bug
If a Panel is created after any of its ancestors, the background of the panel will appear in front of (and likely obscure) those elements.
To Reproduce
Minimal repro:
Expected behavior
Elements of a Panel should appear in front of the background regardless of creation order.
Additional context
This likely needs some flavor of explicit z-ordering.
The text was updated successfully, but these errors were encountered: