I have a QGroupBox widget with children in it that I want to remove. How do I do that? I can\'t find any removeWidget, removeChild,
QGroupBox
removeWidget
removeChild
Well, this works: on the widget i want to remove, call widget.setParent(None). I like how adding to a layout adds a widget to the container, but removing from a layout doesn't... fun stuff.
widget.setParent(None)