Helpviewer/SpeedDial/PageThumbnailer.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3002
6ffc581f00f1
child 3145
a9de05d4a22f
diff -r 9986ec0e559a -r 10516539f238 Helpviewer/SpeedDial/PageThumbnailer.py
--- a/Helpviewer/SpeedDial/PageThumbnailer.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Helpviewer/SpeedDial/PageThumbnailer.py	Fri Oct 18 23:00:41 2013 +0200
@@ -20,7 +20,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)
     
@@ -44,8 +45,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
@@ -113,7 +116,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