diff -r 2a11e1b2dcbe -r 3629d88ae235 Project/DebuggerPropertiesDialog.py --- a/Project/DebuggerPropertiesDialog.py Thu Jan 10 14:23:49 2019 +0100 +++ b/Project/DebuggerPropertiesDialog.py Sat Feb 02 11:12:54 2019 +0100 @@ -84,7 +84,8 @@ self.venvComboBox.setCurrentIndex(venvIndex) if self.project.debugProperties["DEBUGCLIENT"]: self.debugClientPicker.setText( - self.project.debugProperties["DEBUGCLIENT"]) + self.project.debugProperties["DEBUGCLIENT"], + toNative=False) else: if self.project.pdata["PROGLANGUAGE"] in ["Python", "Python2", "Python3"]: @@ -93,7 +94,7 @@ "DebugClients", "Python", "DebugClient.py") else: debugClient = "" - self.debugClientPicker.setText(debugClient) + self.debugClientPicker.setText(debugClient, toNative=False) self.debugEnvironmentOverrideCheckBox.setChecked( self.project.debugProperties["ENVIRONMENTOVERRIDE"]) self.debugEnvironmentEdit.setText( @@ -141,7 +142,7 @@ self.venvComboBox.currentText() self.project.debugProperties["DEBUGCLIENT"] = \ - self.debugClientPicker.text() + self.debugClientPicker.text(toNative=False) if not self.project.debugProperties["DEBUGCLIENT"]: if self.project.pdata["PROGLANGUAGE"] in ["Python", "Python2", "Python3"]: @@ -184,7 +185,7 @@ """ Private method to save the path picker histories. """ - debugClient = self.debugClientPicker.text() + debugClient = self.debugClientPicker.text(toNative=False) debugClientsHistory = self.debugClientPicker.getPathItems() if debugClient not in debugClientsHistory: debugClientsHistory.insert(0, debugClient)