1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-12-31 19:11:18 +01:00

fix(waveform): cleanup of scan_history dialog if not closed manually before widget

This commit is contained in:
2025-10-08 13:29:59 +02:00
committed by Jan Wyzula
parent 2bf489600e
commit d681ba538b

View File

@@ -2360,6 +2360,9 @@ class Waveform(PlotBase):
if self.dap_summary_dialog is not None:
self.dap_summary_dialog.reject()
self.dap_summary_dialog = None
if self.scan_history_dialog is not None:
self.scan_history_dialog.reject()
self.scan_history_dialog = None
super().cleanup()