Hi,
I have the following tree:
- Main
-
- Node 1
-
- Node 2
-
-
- Subnode 2.1
-
-
-
-
- SubSubnode 2.1.1
-
-
If I free 2.1 it will automatically free 2.1.1
But I also want to remove 1 when I remove 2.1 automatically (without handling free signals of 2.1)
Is it possible to do this without breaking the tree?
(Maybe using Owner field or there might be any other field for that?)