From 9062fa2fb54e1c47aa314eef74b314d128a6b2c4 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 14 Aug 1995 12:21:12 +0000 Subject: Added prompts to various file-select dialogs Renumbered resources to above 512 --- Mac/scripts/EditPythonPrefs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Mac/scripts/EditPythonPrefs.py') diff --git a/Mac/scripts/EditPythonPrefs.py b/Mac/scripts/EditPythonPrefs.py index 3e14ff3ba6..2ed604553a 100644 --- a/Mac/scripts/EditPythonPrefs.py +++ b/Mac/scripts/EditPythonPrefs.py @@ -18,7 +18,7 @@ import Res # For Res.Error # resource IDs in our own resources (dialogs, etc) MESSAGE_ID = 256 -DIALOG_ID = 131 +DIALOG_ID = 512 TEXT_ITEM = 1 OK_ITEM = 2 CANCEL_ITEM = 3 @@ -85,7 +85,7 @@ def interact(list, pythondir): if n == REVERT_ITEM: return [], pythondir if n == DIR_ITEM: - fss, ok = macfs.GetDirectory() + fss, ok = macfs.GetDirectory('Select python home folder:') if ok: pythondir = fss tmp = string.splitfields(GetDialogItemText(h), '\r') -- cgit v1.2.1