66 Public slot to save the Debugger Python configuration. |
66 Public slot to save the Debugger Python configuration. |
67 """ |
67 """ |
68 Preferences.setDebugger( |
68 Preferences.setDebugger( |
69 "Python3VirtualEnv", |
69 "Python3VirtualEnv", |
70 self.venvComboBox.currentText()) |
70 self.venvComboBox.currentText()) |
71 if self.standardButton.isChecked(): |
71 dct = "standard" if self.standardButton.isChecked() else "custom" |
72 dct = "standard" |
|
73 else: |
|
74 dct = "custom" |
|
75 Preferences.setDebugger("DebugClientType3", dct) |
72 Preferences.setDebugger("DebugClientType3", dct) |
76 Preferences.setDebugger( |
73 Preferences.setDebugger( |
77 "DebugClient3", |
74 "DebugClient3", |
78 self.debugClientPicker.text(toNative=False)) |
75 self.debugClientPicker.text(toNative=False)) |
79 Preferences.setDebugger( |
76 Preferences.setDebugger( |