--- a/eric6/WebBrowser/Navigation/ReloadStopButton.py Sun Apr 12 18:46:08 2020 +0200 +++ b/eric6/WebBrowser/Navigation/ReloadStopButton.py Sun Apr 12 19:07:49 2020 +0200 @@ -61,10 +61,10 @@ Private slot to update the button. """ if self.__loading: - self.setIcon(UI.PixmapCache.getIcon("stopLoading.png")) + self.setIcon(UI.PixmapCache.getIcon("stopLoading")) self.setToolTip(self.tr("Stop loading")) else: - self.setIcon(UI.PixmapCache.getIcon("reload.png")) + self.setIcon(UI.PixmapCache.getIcon("reload")) self.setToolTip(self.tr("Reload the current screen")) def setLoading(self, loading):