diff -r 17c01303a239 -r 67064c71df21 Preferences/ConfigurationPages/DebuggerPython3Page.py --- a/Preferences/ConfigurationPages/DebuggerPython3Page.py Tue Oct 15 19:13:32 2013 +0200 +++ b/Preferences/ConfigurationPages/DebuggerPython3Page.py Wed Oct 16 15:16:54 2013 +0200 @@ -59,9 +59,11 @@ """ Public slot to save the Debugger Python configuration. """ - Preferences.setDebugger("CustomPython3Interpreter", + Preferences.setDebugger( + "CustomPython3Interpreter", self.customPyCheckBox.isChecked()) - Preferences.setDebugger("Python3Interpreter", + Preferences.setDebugger( + "Python3Interpreter", self.interpreterEdit.text()) if self.standardButton.isChecked(): dct = "standard" @@ -70,13 +72,17 @@ else: dct = "custom" Preferences.setDebugger("DebugClientType3", dct) - Preferences.setDebugger("DebugClient3", + Preferences.setDebugger( + "DebugClient3", self.debugClientEdit.text()) - Preferences.setDebugger("Python3Redirect", + Preferences.setDebugger( + "Python3Redirect", self.pyRedirectCheckBox.isChecked()) - Preferences.setDebugger("Python3NoEncoding", + Preferences.setDebugger( + "Python3NoEncoding", self.pyNoEncodingCheckBox.isChecked()) - Preferences.setDebugger("Python3Extensions", + Preferences.setDebugger( + "Python3Extensions", self.sourceExtensionsEdit.text()) @pyqtSlot()