--- a/eric6/WebBrowser/UrlBar/UrlBar.py Sun Apr 12 18:46:08 2020 +0200 +++ b/eric6/WebBrowser/UrlBar/UrlBar.py Sun Apr 12 19:07:49 2020 +0200 @@ -45,7 +45,7 @@ self.__browser = None self.__privateMode = WebBrowserWindow.isPrivate() - self.__bmActiveIcon = UI.PixmapCache.getIcon("bookmark16.png") + self.__bmActiveIcon = UI.PixmapCache.getIcon("bookmark16") self.__bmInactiveIcon = QIcon( self.__bmActiveIcon.pixmap(16, 16, QIcon.Disabled)) @@ -57,7 +57,7 @@ self.addWidget(self.__favicon, E5LineEdit.LeftSide) self.__rssButton = E5LineEditButton(self) - self.__rssButton.setIcon(UI.PixmapCache.getIcon("rss16.png")) + self.__rssButton.setIcon(UI.PixmapCache.getIcon("rss16")) self.addWidget(self.__rssButton, E5LineEdit.RightSide) self.__rssButton.setVisible(False) @@ -66,7 +66,7 @@ self.__bookmarkButton.setVisible(False) self.__clearButton = E5LineEditButton(self) - self.__clearButton.setIcon(UI.PixmapCache.getIcon("clearLeft.png")) + self.__clearButton.setIcon(UI.PixmapCache.getIcon("clearLeft")) self.addWidget(self.__clearButton, E5LineEdit.RightSide) self.__clearButton.setVisible(False)