View Ids Don'T Get Deregistered On Remove_Child()

Not sure about this one … when you delete a gui element with remove_child() its id remains registered. Any reason for that or would it be possible to deregister it??

They should not be unregistred as long as the view is still alive. The id is global per viewbuilder, not per parent that holds a child.

I guess you have this problem when opening a dialog the second time? Then simply create a new viewbuilder before doing anything else in the GUI…

Hm, i have the problem when updating the sliders in ReSlide. It would have been more comfortable to just delete them all and rebuilt with the original function. I can of course update the existing sliders though …
Thanks for the quick answer :)