I have a QVBoxLayout
that I've added a few widgets to, via addWidget()
. I need to now delete those widgets, and it seems I need to use removeWidget()
(which takes in a widget to be removed) to do that.
I thought that calling children()
or findChildren(QWidget)
on my layout would return a list of the widgets I've added into it; I'm in the debugger, though, and am just receiving empty lists.
Am I terribly misunderstanding something? I've just started doing PyQT this last week and have mostly been learning through trial and error with the API docs.