I have floatable tabs added to a QMainWindow but when I close the window the floated tabs are left behind. So far I've gotten around it with
def closeEvent( self , event ): # remove all previous dock widgets
# loop through dock widgets and delete them
but when I minimize the MainWindow the DockWidgets stay maximized. Is there a way to get them to close and minimize with the main window?