9 """ |
9 """ |
10 |
10 |
11 from PyQt6.QtCore import pyqtSlot |
11 from PyQt6.QtCore import pyqtSlot |
12 from PyQt6.QtWidgets import QFontDialog |
12 from PyQt6.QtWidgets import QFontDialog |
13 |
13 |
|
14 from eric7 import Preferences |
|
15 |
14 from .ConfigurationPageBase import ConfigurationPageBase |
16 from .ConfigurationPageBase import ConfigurationPageBase |
15 from .Ui_HexEditorPage import Ui_HexEditorPage |
17 from .Ui_HexEditorPage import Ui_HexEditorPage |
16 |
|
17 from eric7 import Preferences |
|
18 |
18 |
19 |
19 |
20 class HexEditorPage(ConfigurationPageBase, Ui_HexEditorPage): |
20 class HexEditorPage(ConfigurationPageBase, Ui_HexEditorPage): |
21 """ |
21 """ |
22 Class implementing the Hex Editor configuration page. |
22 Class implementing the Hex Editor configuration page. |