diff -r e35d2cda9a74 -r b3d966393ba9 Preferences/ConfigurationPages/TerminalPage.py --- a/Preferences/ConfigurationPages/TerminalPage.py Sat Sep 04 19:51:19 2010 +0200 +++ b/Preferences/ConfigurationPages/TerminalPage.py Sat Sep 04 19:51:48 2010 +0200 @@ -33,18 +33,18 @@ self.shellCombo.addItems(["ash", "bash", "csh", "ksh", "sh", "tcsh", "zsh"]) # set initial values - self.linenowidthSlider.setValue(\ + self.linenowidthSlider.setValue( Preferences.getTerminal("LinenoWidth")) - self.linenoCheckBox.setChecked(\ + self.linenoCheckBox.setChecked( Preferences.getTerminal("LinenoMargin")) - self.syntaxHighlightingCheckBox.setChecked(\ + self.syntaxHighlightingCheckBox.setChecked( Preferences.getTerminal("SyntaxHighlightingEnabled")) - self.historySpinBox.setValue(\ + self.historySpinBox.setValue( Preferences.getTerminal("MaxHistoryEntries")) self.monospacedFont = Preferences.getTerminal("MonospacedFont") self.monospacedFontSample.setFont(self.monospacedFont) - self.monospacedCheckBox.setChecked(\ + self.monospacedCheckBox.setChecked( Preferences.getTerminal("UseMonospacedFont")) self.marginsFont = Preferences.getTerminal("MarginsFont") self.marginsFontSample.setFont(self.marginsFont) @@ -106,4 +106,4 @@ @param dlg reference to the configuration dialog """ page = TerminalPage() - return page + return page \ No newline at end of file