fix(basic_dock_area): delete_all will also delete floating docks

This commit is contained in:
2026-01-08 23:37:26 +01:00
committed by Jan Wyzula
parent b585a608c7
commit c02f509867
@@ -1372,7 +1372,7 @@ class DockAreaWidget(BECWidget, QWidget):
@SafeSlot()
def delete_all(self):
"""Delete all docks and their associated widgets."""
for dock in list(self.dock_manager.dockWidgets()):
for dock in self.dock_list():
self._delete_dock(dock)