diff -r 1358e9d67a1c -r 88261c96484b eric6/WebBrowser/History/HistoryMenu.py --- a/eric6/WebBrowser/History/HistoryMenu.py Sun Apr 12 18:46:08 2020 +0200 +++ b/eric6/WebBrowser/History/HistoryMenu.py Sun Apr 12 19:07:49 2020 +0200 @@ -375,14 +375,14 @@ self.newPrivateWindow) self.addMenu(self.__mostVisitedMenu) act = self.addMenu(self.__closedTabsMenu) - act.setIcon(UI.PixmapCache.getIcon("trash.png")) + act.setIcon(UI.PixmapCache.getIcon("trash")) act.setEnabled(self.__tabWidget.canRestoreClosedTab()) self.addSeparator() - act = self.addAction(UI.PixmapCache.getIcon("history.png"), + act = self.addAction(UI.PixmapCache.getIcon("history"), self.tr("Show All History...")) act.triggered.connect(self.showHistoryDialog) - act = self.addAction(UI.PixmapCache.getIcon("historyClear.png"), + act = self.addAction(UI.PixmapCache.getIcon("historyClear"), self.tr("Clear History...")) act.triggered.connect(self.__clearHistoryDialog)