--- a/src/eric7/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py Fri Oct 25 09:47:48 2024 +0200 +++ b/src/eric7/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py Fri Oct 25 17:58:59 2024 +0200 @@ -274,7 +274,7 @@ """ from .PyRegExpWizardRepeatDialog import PyRegExpWizardRepeatDialog - dlg = PyRegExpWizardRepeatDialog(self) + dlg = PyRegExpWizardRepeatDialog(parent=self) if dlg.exec() == QDialog.DialogCode.Accepted: self.__insertString(dlg.getRepeat()) @@ -285,7 +285,7 @@ """ from .PyRegExpWizardCharactersDialog import PyRegExpWizardCharactersDialog - dlg = PyRegExpWizardCharactersDialog(self) + dlg = PyRegExpWizardCharactersDialog(parent=self) if dlg.exec() == QDialog.DialogCode.Accepted: self.__insertString(dlg.getCharacters())