diff -r f55fa7eb3cf3 -r 6e0a26c633b2 WebBrowser/WebBrowserTabWidget.py --- a/WebBrowser/WebBrowserTabWidget.py Wed Mar 02 19:41:59 2016 +0100 +++ b/WebBrowser/WebBrowserTabWidget.py Thu Mar 03 19:34:04 2016 +0100 @@ -29,6 +29,7 @@ import Utilities import Preferences +import Globals from eric6config import getConfig @@ -179,9 +180,10 @@ self.__tabContextMenu.addAction( UI.PixmapCache.getIcon("print.png"), self.tr('Print'), self.__tabContextMenuPrint) - self.__tabContextMenu.addAction( - UI.PixmapCache.getIcon("printPdf.png"), - self.tr('Print as PDF'), self.__tabContextMenuPrintPdf) + if Globals.isLinuxPlatform(): + self.__tabContextMenu.addAction( + UI.PixmapCache.getIcon("printPdf.png"), + self.tr('Print as PDF'), self.__tabContextMenuPrintPdf) self.__tabContextMenu.addSeparator() self.__tabContextMenu.addAction( UI.PixmapCache.getIcon("reload.png"),