Typo in Win specific height setting.

This commit is contained in:
Guido van Rossum 1999-01-04 12:23:46 +00:00
parent 909bc18188
commit 46facd1bac

View file

@ -32,7 +32,7 @@ class ZoomHeight:
height = top.winfo_screenheight() height = top.winfo_screenheight()
if sys.platform == 'win32': if sys.platform == 'win32':
y = 0 y = 0
height = height = 72 height = height - 72
else: else:
y = 24 y = 24
height = height - 64 height = height - 64