944:1b59c4ba121e | 945:8cd4d08fa9f6 |
---|---|
17 from .IconsPreviewDialog import IconsPreviewDialog | 17 from .IconsPreviewDialog import IconsPreviewDialog |
18 from .Ui_IconsPage import Ui_IconsPage | 18 from .Ui_IconsPage import Ui_IconsPage |
19 | 19 |
20 import Preferences | 20 import Preferences |
21 import Utilities | 21 import Utilities |
22 | |
22 | 23 |
23 class IconsPage(ConfigurationPageBase, Ui_IconsPage): | 24 class IconsPage(ConfigurationPageBase, Ui_IconsPage): |
24 """ | 25 """ |
25 Class implementing the Icons configuration page. | 26 Class implementing the Icons configuration page. |
26 """ | 27 """ |
166 dir = itm.text() | 167 dir = itm.text() |
167 if dir: | 168 if dir: |
168 dlg = IconsPreviewDialog(self, dir) | 169 dlg = IconsPreviewDialog(self, dir) |
169 dlg.exec_() | 170 dlg.exec_() |
170 | 171 |
172 | |
171 def create(dlg): | 173 def create(dlg): |
172 """ | 174 """ |
173 Module function to create the configuration page. | 175 Module function to create the configuration page. |
174 | 176 |
175 @param dlg reference to the configuration dialog | 177 @param dlg reference to the configuration dialog |