diff -r 45e7bb09c120 -r 80c06d472826 src/eric7/EricWidgets/EricIconBar.py --- a/src/eric7/EricWidgets/EricIconBar.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/EricWidgets/EricIconBar.py Tue Oct 18 16:06:21 2022 +0200 @@ -13,11 +13,11 @@ from PyQt6.QtGui import QColor, QIcon, QCursor, QPalette from PyQt6.QtWidgets import QWidget, QBoxLayout, QWIDGETSIZE_MAX, QMenu -from EricWidgets.EricApplication import ericApp +from eric7.EricWidgets.EricApplication import ericApp from .EricClickableLabel import EricClickableLabel -import UI.PixmapCache +from eric7.EricGui import EricPixmapCache class EricIconBar(QWidget): @@ -265,7 +265,7 @@ int(self.__barSize * self.MoreLabelAspect), self.__barSize ) self.__moreLabel.setPixmap( - UI.PixmapCache.getIcon("sbDotsH96").pixmap( + EricPixmapCache.getIcon("sbDotsH96").pixmap( int(self.__barSize * self.MoreLabelAspect), self.__barSize ) ) @@ -274,7 +274,7 @@ self.__barSize, int(self.__barSize * self.MoreLabelAspect) ) self.__moreLabel.setPixmap( - UI.PixmapCache.getIcon("sbDotsV96").pixmap( + EricPixmapCache.getIcon("sbDotsV96").pixmap( self.__barSize, int(self.__barSize * self.MoreLabelAspect) ) )