--- a/WebBrowser/WebBrowserTabWidget.py Wed Dec 12 19:43:53 2018 +0100 +++ b/WebBrowser/WebBrowserTabWidget.py Wed Dec 12 19:52:24 2018 +0100 @@ -1022,14 +1022,9 @@ """You have %n tab(s) open.""", "", self.count()), modal=True, parent=self) - if self.__mainWindow.fromEric: - quitButton = mb.addButton( - self.tr("&Close"), E5MessageBox.AcceptRole) - quitButton.setIcon(UI.PixmapCache.getIcon("close.png")) - else: - quitButton = mb.addButton( - self.tr("&Quit"), E5MessageBox.AcceptRole) - quitButton.setIcon(UI.PixmapCache.getIcon("exit.png")) + quitButton = mb.addButton( + self.tr("&Quit"), E5MessageBox.AcceptRole) + quitButton.setIcon(UI.PixmapCache.getIcon("exit.png")) closeTabButton = mb.addButton( self.tr("C&lose Current Tab"), E5MessageBox.AcceptRole) closeTabButton.setIcon(UI.PixmapCache.getIcon("tabClose.png"))