summaryrefslogtreecommitdiffstats
path: root/Mac/Lib
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-07-27 09:21:28 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-07-27 09:21:28 (GMT)
commit8d2f3d66ee681a7d9a18fb854d0ecd1816edb78b (patch)
tree1558ef4efe2b0cc739f86fbea2dfe3e7e5c2b518 /Mac/Lib
parent33dc0a1705f1493e0ec079e291980da26dd2b39d (diff)
downloadcpython-8d2f3d66ee681a7d9a18fb854d0ecd1816edb78b.zip
cpython-8d2f3d66ee681a7d9a18fb854d0ecd1816edb78b.tar.gz
cpython-8d2f3d66ee681a7d9a18fb854d0ecd1816edb78b.tar.bz2
ProgressBar crashed when you tried to drag it. Fixed. Thanks go to Alfonso Baciero.
Diffstat (limited to 'Mac/Lib')
-rw-r--r--Mac/Lib/EasyDialogs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Lib/EasyDialogs.py b/Mac/Lib/EasyDialogs.py
index a9d3e16..1943908 100644
--- a/Mac/Lib/EasyDialogs.py
+++ b/Mac/Lib/EasyDialogs.py
@@ -277,7 +277,7 @@ class ProgressBar:
raise KeyboardInterrupt, ev
else:
if part == 4: # inDrag
- self.d.DragWindow(where, screenbounds)
+ self.w.DragWindow(where, screenbounds)
else:
MacOS.HandleEvent(ev)