--- a/Preferences/ConfigurationPages/ShellPage.py Fri Mar 11 08:55:14 2011 +0100 +++ b/Preferences/ConfigurationPages/ShellPage.py Fri Mar 11 16:51:57 2011 +0100 @@ -14,6 +14,7 @@ import Preferences + class ShellPage(ConfigurationPageBase, Ui_ShellPage): """ Class implementing the Shell configuration page. @@ -69,7 +70,7 @@ self.shellSyntaxHighlightingCheckBox.isChecked()) Preferences.setShell("MaxHistoryEntries", self.shellHistorySpinBox.value()) - Preferences.setShell("ShowStdOutErr", + Preferences.setShell("ShowStdOutErr", self.stdOutErrCheckBox.isChecked()) Preferences.setShell("MonospacedFont", self.monospacedFont) @@ -99,6 +100,7 @@ self.monospacedFontSample.setFont(self.monospacedFont) self.marginsFontSample.setFont(self.marginsFont) + def create(dlg): """ Module function to create the configuration page. @@ -106,4 +108,4 @@ @param dlg reference to the configuration dialog """ page = ShellPage() - return page \ No newline at end of file + return page