diff options
author | Guido van Rossum <guido@python.org> | 1999-01-04 12:23:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-04 12:23:46 (GMT) |
commit | 46facd1bace0f34ddb7a81fedc9cd6e15ef97094 (patch) | |
tree | c758ef9ad235864eebe9b0e89187dcaf484943ae /Tools/idle/ZoomHeight.py | |
parent | 909bc181885185a6ee96f34a2fb3ad5ffb92954e (diff) | |
download | cpython-46facd1bace0f34ddb7a81fedc9cd6e15ef97094.zip cpython-46facd1bace0f34ddb7a81fedc9cd6e15ef97094.tar.gz cpython-46facd1bace0f34ddb7a81fedc9cd6e15ef97094.tar.bz2 |
Typo in Win specific height setting.
Diffstat (limited to 'Tools/idle/ZoomHeight.py')
-rw-r--r-- | Tools/idle/ZoomHeight.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/idle/ZoomHeight.py b/Tools/idle/ZoomHeight.py index b1ba70f..88bcee5 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 |