-
-
Notifications
You must be signed in to change notification settings - Fork 46
Editor: UI Editor serializes whole widgets hierarchy #993
Copy link
Copy link
Closed
Labels
P2This issue should be included to the next releaseThis issue should be included to the next release
Description
Description
UI Editor serializes whole widgets hierarchy. Including Sub Widgets
Prerequisites
UI Editor opened
Steps to Reproduce
- Add a Button
- Save UI
- Check sources of ui file
Expected behavior:
- ui file contains only a Button element
<?xml version="1.0"?>
<ui>
<Button name="button" text="Test1" />
</ui>
Actual behavior:
- ui file contains whole Button hierarchy with sub widgets
<?xml version="1.0"?>
<ui>
<Button name="button" text="Test1">
<Frame name="Background" />
<Label name="Label" text="Test1" />
<Image name="Image" />
</Button>
</ui>
Reproducibility:
100%
Versions
2025.2
Additional Information
n/a
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
P2This issue should be included to the next releaseThis issue should be included to the next release
Type
Projects
Status
Done for Release