summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
Diffstat (limited to 'Mac')
-rw-r--r--Mac/scripts/EditPythonPrefs.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Mac/scripts/EditPythonPrefs.py b/Mac/scripts/EditPythonPrefs.py
index e8177c6..343ea22 100644
--- a/Mac/scripts/EditPythonPrefs.py
+++ b/Mac/scripts/EditPythonPrefs.py
@@ -110,9 +110,9 @@ def interact(options, title):
d = GetNewDialog(DIALOG_ID, -1)
htext = d.GetDialogItemAsControl(TITLE_ITEM)
SetDialogItemText(htext, title)
- ctl = d.GetDialogItemAsControl(TEXT_ITEM)
+ path_ctl = d.GetDialogItemAsControl(TEXT_ITEM)
data = string.joinfields(options['path'], '\r')
- ctl.SetControlData(Controls.kControlEditTextPart, Controls.kControlEditTextTextTag, data)
+ path_ctl.SetControlData(Controls.kControlEditTextPart, Controls.kControlEditTextTextTag, data)
d.SelectDialogItemText(TEXT_ITEM, 0, 32767)
d.SelectDialogItemText(TEXT_ITEM, 0, 0)
@@ -142,7 +142,8 @@ def interact(options, title):
noptions = optinteract(noptions)
if noptions:
options = noptions
- tmp = string.splitfields(h.data, '\r')
+ data = path_ctl.GetControlData(Controls.kControlEditTextPart, Controls.kControlEditTextTextTag)
+ tmp = string.splitfields(data, '\r')
newpath = []
for i in tmp:
if i: