7 Module implementing the Spelling Properties dialog. |
7 Module implementing the Spelling Properties dialog. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtWidgets import QDialog |
10 from PyQt6.QtWidgets import QDialog |
11 |
11 |
|
12 from eric7 import Preferences |
12 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
13 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
13 |
14 |
14 from .Ui_SpellingPropertiesDialog import Ui_SpellingPropertiesDialog |
15 from .Ui_SpellingPropertiesDialog import Ui_SpellingPropertiesDialog |
15 |
|
16 from eric7 import Preferences |
|
17 |
16 |
18 |
17 |
19 class SpellingPropertiesDialog(QDialog, Ui_SpellingPropertiesDialog): |
18 class SpellingPropertiesDialog(QDialog, Ui_SpellingPropertiesDialog): |
20 """ |
19 """ |
21 Class implementing the Spelling Properties dialog. |
20 Class implementing the Spelling Properties dialog. |