diff -r 0b936ff1bbb9 -r a2bc06a54d9d src/eric7/WebBrowser/PersonalInformationManager/PersonalInformationManager.py --- a/src/eric7/WebBrowser/PersonalInformationManager/PersonalInformationManager.py Sun Nov 06 11:22:39 2022 +0100 +++ b/src/eric7/WebBrowser/PersonalInformationManager/PersonalInformationManager.py Mon Nov 07 17:19:58 2022 +0100 @@ -113,13 +113,16 @@ self.__loaded = True - def showConfigurationDialog(self): + def showConfigurationDialog(self, parent=None): """ Public method to show the configuration dialog. + + @param parent reference to the parent widget + @type QWidget """ from .PersonalDataDialog import PersonalDataDialog - dlg = PersonalDataDialog() + dlg = PersonalDataDialog(parent=parent) if dlg.exec() == QDialog.DialogCode.Accepted: dlg.storeData() self.__loadSettings()