Can I somehow attach one QTreeWidgetItem to two (or more) nodes at once? Just like this:
parent1
└child1
parent2
└child1
If I just do addChild()
on both parents, the child appears only on the first parent. Is that even possible? Or such result can be achieved only by completely copying of descendant?