commit | 21c5c8fa5b205e5106360811964a67141852d428 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Aug 22 20:56:07 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Aug 22 20:56:07 1997 +0000 |
tree | 8d42a934aa026a4db54538b34960c2230a334f4f | |
parent | d14c06819ed92f4b819529f90b3377cf2caad3f1 [diff] [blame] |
Correct off-by-two-pixels error.
diff --git a/Demo/tkinter/guido/hanoi.py b/Demo/tkinter/guido/hanoi.py index 2cc4134..9e566c4 100755 --- a/Demo/tkinter/guido/hanoi.py +++ b/Demo/tkinter/guido/hanoi.py
@@ -111,7 +111,7 @@ self.tk.update() # Move it down on top of the previous piece - pieceheight = y2-y1-2 + pieceheight = y2-y1 newbottom = by2 - pieceheight*len(self.pegstate[b]) - 2 while 1: x1, y1, x2, y2 = c.bbox(p)