123 """ |
123 """ |
124 Public method to show the configuration dialog. |
124 Public method to show the configuration dialog. |
125 """ |
125 """ |
126 from .PersonalDataDialog import PersonalDataDialog |
126 from .PersonalDataDialog import PersonalDataDialog |
127 dlg = PersonalDataDialog() |
127 dlg = PersonalDataDialog() |
128 if dlg.exec_() == QDialog.Accepted: |
128 if dlg.exec() == QDialog.Accepted: |
129 dlg.storeData() |
129 dlg.storeData() |
130 self.__loadSettings() |
130 self.__loadSettings() |
131 |
131 |
132 def createSubMenu(self, menu, view, hitTestResult): |
132 def createSubMenu(self, menu, view, hitTestResult): |
133 """ |
133 """ |