--- a/eric6/Plugins/ViewManagerPlugins/Listspace/Listspace.py Sun Apr 05 18:17:08 2020 +0200 +++ b/eric6/Plugins/ViewManagerPlugins/Listspace/Listspace.py Sat May 02 13:51:07 2020 +0200 @@ -253,23 +253,23 @@ """ self.__menu = QMenu(self) self.__menu.addAction( - UI.PixmapCache.getIcon("tabClose.png"), + UI.PixmapCache.getIcon("tabClose"), self.tr('Close'), self.__contextMenuClose) self.closeOthersMenuAct = self.__menu.addAction( - UI.PixmapCache.getIcon("tabCloseOther.png"), + UI.PixmapCache.getIcon("tabCloseOther"), self.tr("Close Others"), self.__contextMenuCloseOthers) self.__menu.addAction( self.tr('Close All'), self.__contextMenuCloseAll) self.__menu.addSeparator() self.saveMenuAct = self.__menu.addAction( - UI.PixmapCache.getIcon("fileSave.png"), + UI.PixmapCache.getIcon("fileSave"), self.tr('Save'), self.__contextMenuSave) self.__menu.addAction( - UI.PixmapCache.getIcon("fileSaveAs.png"), + UI.PixmapCache.getIcon("fileSaveAs"), self.tr('Save As...'), self.__contextMenuSaveAs) self.__menu.addAction( - UI.PixmapCache.getIcon("fileSaveAll.png"), + UI.PixmapCache.getIcon("fileSaveAll"), self.tr('Save All'), self.__contextMenuSaveAll) self.__menu.addSeparator() self.openRejectionsMenuAct = self.__menu.addAction( @@ -277,7 +277,7 @@ self.__contextMenuOpenRejections) self.__menu.addSeparator() self.__menu.addAction( - UI.PixmapCache.getIcon("print.png"), + UI.PixmapCache.getIcon("print"), self.tr('Print'), self.__contextMenuPrintFile) self.__menu.addSeparator() self.copyPathAct = self.__menu.addAction( @@ -596,13 +596,13 @@ index = self.editors.index(editor) keys = [] if m: - keys.append("fileModified.png") + keys.append("fileModified") if editor.hasSyntaxErrors(): - keys.append("syntaxError22.png") + keys.append("syntaxError22") elif editor.hasWarnings(): - keys.append("warning22.png") + keys.append("warning22") if not keys: - keys.append("empty.png") + keys.append("empty") item = self.viewlist.item(index) if item: item.setIcon(UI.PixmapCache.getCombinedIcon(keys)) @@ -620,13 +620,13 @@ index = self.editors.index(editor) keys = [] if editor.isModified(): - keys.append("fileModified.png") + keys.append("fileModified") if editor.hasSyntaxErrors(): - keys.append("syntaxError22.png") + keys.append("syntaxError22") elif editor.hasWarnings(): - keys.append("warning22.png") + keys.append("warning22") if not keys: - keys.append("empty.png") + keys.append("empty") item = self.viewlist.item(index) if item: item.setIcon(UI.PixmapCache.getCombinedIcon(keys))