--- a/eric6/WebBrowser/Navigation/NavigationBar.py Sun Apr 12 18:46:08 2020 +0200 +++ b/eric6/WebBrowser/Navigation/NavigationBar.py Sun Apr 12 19:07:49 2020 +0200 @@ -58,7 +58,7 @@ self.__backButton.setFocusPolicy(Qt.NoFocus) self.__backButton.setAutoRaise(True) self.__backButton.setIcon( - UI.PixmapCache.getIcon("back.png")) + UI.PixmapCache.getIcon("back")) self.__backButton.setEnabled(False) self.__forwardButton = E5ToolButton(self) @@ -68,7 +68,7 @@ self.__forwardButton.setFocusPolicy(Qt.NoFocus) self.__forwardButton.setAutoRaise(True) self.__forwardButton.setIcon( - UI.PixmapCache.getIcon("forward.png")) + UI.PixmapCache.getIcon("forward")) self.__forwardButton.setEnabled(False) self.__backNextLayout = QHBoxLayout() @@ -86,13 +86,13 @@ self.__homeButton.setFocusPolicy(Qt.NoFocus) self.__homeButton.setAutoRaise(True) self.__homeButton.setIcon( - UI.PixmapCache.getIcon("home.png")) + UI.PixmapCache.getIcon("home")) self.__exitFullScreenButton = E5ToolButton(self) self.__exitFullScreenButton.setObjectName( "navigation_exitfullscreen_button") self.__exitFullScreenButton.setIcon( - UI.PixmapCache.getIcon("windowRestore.png")) + UI.PixmapCache.getIcon("windowRestore")) self.__exitFullScreenButton.setToolTip(self.tr("Exit Fullscreen")) self.__exitFullScreenButton.setToolButtonStyle(Qt.ToolButtonIconOnly) self.__exitFullScreenButton.setFocusPolicy(Qt.NoFocus) @@ -105,7 +105,7 @@ self.__superMenuButton = E5ToolButton(self) self.__superMenuButton.setObjectName( "navigation_supermenu_button") - self.__superMenuButton.setIcon(UI.PixmapCache.getIcon("superMenu.png")) + self.__superMenuButton.setIcon(UI.PixmapCache.getIcon("superMenu")) self.__superMenuButton.setToolTip(self.tr("Main Menu")) self.__superMenuButton.setPopupMode(QToolButton.InstantPopup) self.__superMenuButton.setToolButtonStyle(Qt.ToolButtonIconOnly)