From 46facd1bace0f34ddb7a81fedc9cd6e15ef97094 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 4 Jan 1999 12:23:46 +0000 Subject: [PATCH] Typo in Win specific height setting. --- Tools/idle/ZoomHeight.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1