--- a/eric6/QScintilla/SearchReplaceWidget.py Sun Apr 12 18:46:08 2020 +0200 +++ b/eric6/QScintilla/SearchReplaceWidget.py Sun Apr 12 19:07:49 2020 +0200 @@ -127,19 +127,19 @@ self.setWhatsThis(whatsThis) # set icons - self.ui.closeButton.setIcon(UI.PixmapCache.getIcon("close.png")) + self.ui.closeButton.setIcon(UI.PixmapCache.getIcon("close")) self.ui.findPrevButton.setIcon( - UI.PixmapCache.getIcon("1leftarrow.png")) + UI.PixmapCache.getIcon("1leftarrow")) self.ui.findNextButton.setIcon( - UI.PixmapCache.getIcon("1rightarrow.png")) + UI.PixmapCache.getIcon("1rightarrow")) if replace: self.ui.replaceButton.setIcon( - UI.PixmapCache.getIcon("editReplace.png")) + UI.PixmapCache.getIcon("editReplace")) self.ui.replaceSearchButton.setIcon( - UI.PixmapCache.getIcon("editReplaceSearch.png")) + UI.PixmapCache.getIcon("editReplaceSearch")) self.ui.replaceAllButton.setIcon( - UI.PixmapCache.getIcon("editReplaceAll.png")) + UI.PixmapCache.getIcon("editReplaceAll")) # set line edit completers self.ui.findtextCombo.setCompleter(None)