--- a/src/eric7/Debugger/BreakPointViewer.py Fri Oct 25 09:47:48 2024 +0200 +++ b/src/eric7/Debugger/BreakPointViewer.py Fri Oct 25 17:58:59 2024 +0200 @@ -251,7 +251,7 @@ (fnHistory[0], None), None, condHistory, - self, + parent=self, modal=1, addMode=1, filenameHistory=fnHistory, @@ -317,7 +317,11 @@ fnHistory, condHistory = self.__loadRecent() dlg = EditBreakpointDialog( - (fn, line), (cond, temp, enabled, count), condHistory, self, modal=True + (fn, line), + (cond, temp, enabled, count), + condHistory, + parent=self, + modal=True, ) if dlg.exec() == QDialog.DialogCode.Accepted: cond, temp, enabled, count = dlg.getData()