--- a/eric6/WebBrowser/Tools/WebIconProvider.py Sun Apr 12 18:46:08 2020 +0200 +++ b/eric6/WebBrowser/Tools/WebIconProvider.py Sun Apr 12 19:07:49 2020 +0200 @@ -174,15 +174,15 @@ """ scheme = url.scheme() if scheme in ["eric", "about"]: - return UI.PixmapCache.getIcon("ericWeb.png") + return UI.PixmapCache.getIcon("ericWeb") elif scheme == "qthelp": - return UI.PixmapCache.getIcon("qthelp.png") + return UI.PixmapCache.getIcon("qthelp") elif scheme == "file": - return UI.PixmapCache.getIcon("fileMisc.png") + return UI.PixmapCache.getIcon("fileMisc") elif scheme == "abp": - return UI.PixmapCache.getIcon("adBlockPlus.png") + return UI.PixmapCache.getIcon("adBlockPlus") elif scheme == "ftp": - return UI.PixmapCache.getIcon("network-server.png") + return UI.PixmapCache.getIcon("network-server") self.load() @@ -201,9 +201,9 @@ return self.__iconsDB[iconUrlStr] if scheme == "https": - return UI.PixmapCache.getIcon("securityHigh32.png") + return UI.PixmapCache.getIcon("securityHigh32") else: - return UI.PixmapCache.getIcon("defaultIcon.png") + return UI.PixmapCache.getIcon("defaultIcon") def clear(self): """