Preferences/ConfigurationPages/HelpAppearancePage.py

changeset 3621
15f23ed3f216
parent 3484
645c12de6b0c
child 3656
441956d8fce5
--- a/Preferences/ConfigurationPages/HelpAppearancePage.py	Fri May 30 13:17:20 2014 +0200
+++ b/Preferences/ConfigurationPages/HelpAppearancePage.py	Fri May 30 15:16:40 2014 +0200
@@ -43,15 +43,15 @@
         # set initial values
         self.standardFont = Preferences.getHelp("StandardFont")
         self.standardFontSample.setFont(self.standardFont)
-        self.standardFontSample.setText("{0} {1}"
-            .format(self.standardFont.family(),
-                    self.standardFont.pointSize()))
+        self.standardFontSample.setText(
+            "{0} {1}".format(self.standardFont.family(),
+                             self.standardFont.pointSize()))
         
         self.fixedFont = Preferences.getHelp("FixedFont")
         self.fixedFontSample.setFont(self.fixedFont)
-        self.fixedFontSample.setText("{0} {1}"
-            .format(self.fixedFont.family(),
-                    self.fixedFont.pointSize()))
+        self.fixedFontSample.setText(
+            "{0} {1}".format(self.fixedFont.family(),
+                             self.fixedFont.pointSize()))
         
         self.initColour("SaveUrlColor", self.secureURLsColourButton,
                         Preferences.getHelp)

eric ide

mercurial