Plugins/ViewManagerPlugins/Tabview/Tabview.py

branch
Py2 comp.
changeset 3065
070b35dde35e
parent 3060
5883ce99ee12
child 3080
6c0a430b19df
--- a/Plugins/ViewManagerPlugins/Tabview/Tabview.py	Sun Nov 03 16:23:07 2013 +0100
+++ b/Plugins/ViewManagerPlugins/Tabview/Tabview.py	Tue Nov 05 22:23:38 2013 +0100
@@ -224,8 +224,9 @@
         self.emptyLabel = QLabel()
         self.emptyLabel.setPixmap(ericPic)
         self.emptyLabel.setAlignment(Qt.AlignVCenter | Qt.AlignHCenter)
-        super(TabWidget, self).addTab(self.emptyLabel,
-                       UI.PixmapCache.getIcon("empty.png"), "")
+        super(TabWidget, self).addTab(
+            self.emptyLabel,
+            UI.PixmapCache.getIcon("empty.png"), "")
         
     def __initMenu(self):
         """
@@ -347,7 +348,8 @@
         @param title title for the new tab (string)
         """
         editor = assembly.getEditor()
-        super(TabWidget, self).addTab(assembly, UI.PixmapCache.getIcon("empty.png"), title)
+        super(TabWidget, self).addTab(
+            assembly, UI.PixmapCache.getIcon("empty.png"), title)
         if self.closeButton:
             self.closeButton.setEnabled(True)
         else:
@@ -374,9 +376,10 @@
         @return index of the inserted tab (integer)
         """
         editor = assembly.getEditor()
-        newIndex = super(TabWidget, self).insertTab(index, assembly,
-                                     UI.PixmapCache.getIcon("empty.png"),
-                                     title)
+        newIndex = super(TabWidget, self).insertTab(
+            index, assembly,
+            UI.PixmapCache.getIcon("empty.png"),
+            title)
         if self.closeButton:
             self.closeButton.setEnabled(True)
         else:

eric ide

mercurial