diff -r 45e7bb09c120 -r 80c06d472826 src/eric7/Preferences/ConfigurationPages/InterfacePage.py --- a/src/eric7/Preferences/ConfigurationPages/InterfacePage.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Preferences/ConfigurationPages/InterfacePage.py Tue Oct 18 16:06:21 2022 +0200 @@ -13,16 +13,15 @@ from PyQt6.QtCore import pyqtSlot, QTranslator from PyQt6.QtWidgets import QStyleFactory, QDialog, QColorDialog -from EricWidgets.EricPathPicker import EricPathPickerModes -from EricWidgets.EricIconBar import EricIconBar -from EricWidgets.EricApplication import ericApp +from eric7.EricWidgets.EricPathPicker import EricPathPickerModes +from eric7.EricWidgets.EricIconBar import EricIconBar +from eric7.EricWidgets.EricApplication import ericApp from .ConfigurationPageBase import ConfigurationPageBase from .Ui_InterfacePage import Ui_InterfacePage -import Preferences -import Utilities -import UI.PixmapCache +from eric7 import Preferences, Utilities +from eric7.EricGui import EricPixmapCache from eric7config import getConfig @@ -280,7 +279,7 @@ EricIconBar.LabelStyleSheetTemplate.format(self.__iconBarColor.name()) ) self.sampleLabel.setPixmap( - UI.PixmapCache.getIcon("sbDebugViewer96").pixmap(iconSize, iconSize) + EricPixmapCache.getIcon("sbDebugViewer96").pixmap(iconSize, iconSize) ) self.highlightedSampleLabel.setFixedSize(size, size) @@ -290,7 +289,7 @@ ) ) self.highlightedSampleLabel.setPixmap( - UI.PixmapCache.getIcon("sbDebugViewer96").pixmap(iconSize, iconSize) + EricPixmapCache.getIcon("sbDebugViewer96").pixmap(iconSize, iconSize) ) @pyqtSlot()