From: Jack Jansen Date: Fri, 27 Jul 2001 09:21:28 +0000 (+0000) Subject: ProgressBar crashed when you tried to drag it. Fixed. Thanks go to Alfonso Baciero. X-Git-Tag: v2.2a3~952 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d2f3d66ee681a7d9a18fb854d0ecd1816edb78b;p=python ProgressBar crashed when you tried to drag it. Fixed. Thanks go to Alfonso Baciero. --- diff --git a/Mac/Lib/EasyDialogs.py b/Mac/Lib/EasyDialogs.py index a9d3e16013..1943908910 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)