Helpviewer/SpeedDial/PageThumbnailer.py

changeset 3002
6ffc581f00f1
parent 2403
e3d7a861547c
child 3057
10516539f238
child 3160
209a07d7e401
--- a/Helpviewer/SpeedDial/PageThumbnailer.py	Wed Oct 09 19:47:41 2013 +0200
+++ b/Helpviewer/SpeedDial/PageThumbnailer.py	Thu Oct 10 18:35:45 2013 +0200
@@ -18,7 +18,8 @@
     """
     Class implementing a thumbnail creator for web sites.
     
-    @signal thumbnailCreated(QPixmap) emitted after the thumbnail has been created
+    @signal thumbnailCreated(QPixmap) emitted after the thumbnail has been
+        created
     """
     thumbnailCreated = pyqtSignal(QPixmap)
     
@@ -42,8 +43,10 @@
             Helpviewer.HelpWindow.HelpWindow.networkAccessManager())
         self.__page.setNetworkAccessManager(self.__proxy)
         
-        self.__page.mainFrame().setScrollBarPolicy(Qt.Horizontal, Qt.ScrollBarAlwaysOff)
-        self.__page.mainFrame().setScrollBarPolicy(Qt.Vertical, Qt.ScrollBarAlwaysOff)
+        self.__page.mainFrame().setScrollBarPolicy(
+            Qt.Horizontal, Qt.ScrollBarAlwaysOff)
+        self.__page.mainFrame().setScrollBarPolicy(
+            Qt.Vertical, Qt.ScrollBarAlwaysOff)
         
         # Full HD
         # Every page should fit in this resolution
@@ -111,7 +114,8 @@
         """
         Private slot creating the thumbnail of the web site.
         
-        @param status flag indicating a successful load of the web site (boolean)
+        @param status flag indicating a successful load of the web site
+            (boolean)
         """
         if not status:
             self.thumbnailCreated.emit(QPixmap())

eric ide

mercurial