diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-12-20 01:22:01 +0000 |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-12-20 01:22:01 +0000 |
commit | d0e2926d2a10ff3414b3d9177034728c1a074cd1 (patch) | |
tree | aaaea4f6b23c0ce3f12749bba03862cb1205296a /Lib/idlelib/ZoomHeight.py | |
parent | a137cc9cb773a5823b9e30cddbb7ac7ee025d2d9 (diff) | |
download | cpython-git-d0e2926d2a10ff3414b3d9177034728c1a074cd1.tar.gz |
Panel Bar on the Bottom is Probably More Common
Diffstat (limited to 'Lib/idlelib/ZoomHeight.py')
-rw-r--r-- | Lib/idlelib/ZoomHeight.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/idlelib/ZoomHeight.py b/Lib/idlelib/ZoomHeight.py index f2b99e96b2..d65af663d9 100644 --- a/Lib/idlelib/ZoomHeight.py +++ b/Lib/idlelib/ZoomHeight.py @@ -30,8 +30,10 @@ def zoom_height(top): newy = 0 newheight = newheight - 72 else: - newy = 24 - newheight = newheight - 96 + #newy = 24 + newy = 0 + #newheight = newheight - 96 + newheight = newheight - 88 if height >= newheight: newgeom = "" else: |