src/eric7/Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py

branch
eric7
changeset 11006
a671918232f3
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
11005:b918c6c2736b 11006:a671918232f3
125 """ 125 """
126 Private slot to handle the selection of font dialog options. 126 Private slot to handle the selection of font dialog options.
127 """ 127 """
128 from .FontDialogOptionsDialog import FontDialogOptionsDialog 128 from .FontDialogOptionsDialog import FontDialogOptionsDialog
129 129
130 dlg = FontDialogOptionsDialog(self.fontOptions, self) 130 dlg = FontDialogOptionsDialog(self.fontOptions, parent=self)
131 if dlg.exec() == QDialog.DialogCode.Accepted: 131 if dlg.exec() == QDialog.DialogCode.Accepted:
132 self.fontOptions = dlg.getOptions() 132 self.fontOptions = dlg.getOptions()
133 133
134 def getCode(self, indLevel, indString): 134 def getCode(self, indLevel, indString):
135 """ 135 """

eric ide

mercurial