--- a/src/eric7/UI/SearchWidget.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/UI/SearchWidget.py Tue Oct 18 16:06:21 2022 +0200 @@ -10,7 +10,7 @@ from PyQt6.QtCore import pyqtSlot, pyqtSignal, Qt from PyQt6.QtWidgets import QWidget, QSpacerItem, QSizePolicy -import UI.PixmapCache +from eric7.EricGui import EricPixmapCache class SearchWidget(QWidget): @@ -68,9 +68,9 @@ self.__mainWindow = mainWindow self.__findBackwards = True - self.__ui.closeButton.setIcon(UI.PixmapCache.getIcon("close")) - self.__ui.findPrevButton.setIcon(UI.PixmapCache.getIcon("1leftarrow")) - self.__ui.findNextButton.setIcon(UI.PixmapCache.getIcon("1rightarrow")) + self.__ui.closeButton.setIcon(EricPixmapCache.getIcon("close")) + self.__ui.findPrevButton.setIcon(EricPixmapCache.getIcon("1leftarrow")) + self.__ui.findNextButton.setIcon(EricPixmapCache.getIcon("1rightarrow")) self.findHistory = []