8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot |
10 from PyQt6.QtCore import pyqtSlot |
11 from PyQt6.QtGui import QColor |
11 from PyQt6.QtGui import QColor |
12 |
12 |
|
13 from eric7 import Preferences |
|
14 |
13 from .ConfigurationPageBase import ConfigurationPageBase |
15 from .ConfigurationPageBase import ConfigurationPageBase |
14 from .Ui_TasksPage import Ui_TasksPage |
16 from .Ui_TasksPage import Ui_TasksPage |
15 |
|
16 from eric7 import Preferences |
|
17 |
17 |
18 |
18 |
19 class TasksPage(ConfigurationPageBase, Ui_TasksPage): |
19 class TasksPage(ConfigurationPageBase, Ui_TasksPage): |
20 """ |
20 """ |
21 Class implementing the Tasks configuration page. |
21 Class implementing the Tasks configuration page. |