src/eric7/WebBrowser/PersonalInformationManager/PersonalInformationManager.py

branch
eric7
changeset 9482
a2bc06a54d9d
parent 9473
3f23dbf37dbe
child 9653
e67609152c5e
--- 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()

eric ide

mercurial