From: Guido van Rossum Date: Mon, 4 Jan 1999 12:23:46 +0000 (+0000) Subject: Typo in Win specific height setting. X-Git-Tag: v1.5.2b2~479 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=46facd1bace0f34ddb7a81fedc9cd6e15ef97094;p=python Typo in Win specific height setting. --- diff --git a/Tools/idle/ZoomHeight.py b/Tools/idle/ZoomHeight.py index b1ba70f002..88bcee5753 100644 --- a/Tools/idle/ZoomHeight.py +++ b/Tools/idle/ZoomHeight.py @@ -32,7 +32,7 @@ class ZoomHeight: height = top.winfo_screenheight() if sys.platform == 'win32': y = 0 - height = height = 72 + height = height - 72 else: y = 24 height = height - 64