diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-07-27 09:21:28 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-07-27 09:21:28 (GMT) |
commit | 8d2f3d66ee681a7d9a18fb854d0ecd1816edb78b (patch) | |
tree | 1558ef4efe2b0cc739f86fbea2dfe3e7e5c2b518 /Mac/Lib | |
parent | 33dc0a1705f1493e0ec079e291980da26dd2b39d (diff) | |
download | cpython-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.py | 2 |
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) |