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 """ |