--- a/Preferences/ConfigurationPages/DebuggerGeneralPage.py Thu Dec 18 18:56:04 2014 +0100 +++ b/Preferences/ConfigurationPages/DebuggerGeneralPage.py Fri Dec 19 13:15:39 2014 +0100 @@ -139,6 +139,8 @@ Preferences.getDebugger("SuppressClientExit")) self.exceptionBreakCheckBox.setChecked( Preferences.getDebugger("BreakAlways")) + self.exceptionShellCheckBox.setChecked( + Preferences.getDebugger("ShowExceptionInShell")) self.autoViewSourcecodeCheckBox.setChecked( Preferences.getDebugger("AutoViewSourceCode")) @@ -220,6 +222,9 @@ "BreakAlways", self.exceptionBreakCheckBox.isChecked()) Preferences.setDebugger( + "ShowExceptionInShell", + self.exceptionShellCheckBox.isChecked()) + Preferences.setDebugger( "AutoViewSourceCode", self.autoViewSourcecodeCheckBox.isChecked())