Preferences/ConfigurationPages/DebuggerGeneralPage.py

changeset 3974
01991e605ba0
parent 3656
441956d8fce5
child 4021
195a471c327b
--- 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())
         

eric ide

mercurial