mirror of
https://github.com/python/cpython.git
synced 2024-11-25 02:44:06 +08:00
Use only the height to decide whether to zoom in or out.
This commit is contained in:
parent
7890203f49
commit
38a5a3b3f1
@ -29,14 +29,15 @@ class ZoomHeight:
|
||||
top.bell()
|
||||
return
|
||||
width, height, x, y = map(int, m.groups())
|
||||
height = top.winfo_screenheight()
|
||||
newheight = top.winfo_screenheight()
|
||||
if sys.platform == 'win32':
|
||||
y = 0
|
||||
height = height - 72
|
||||
newy = 0
|
||||
newheight = newheight - 72
|
||||
else:
|
||||
y = 24
|
||||
height = height - 96
|
||||
newgeom = "%dx%d+%d+%d" % (width, height, x, y)
|
||||
if geom == newgeom:
|
||||
newy = 24
|
||||
newheight = newheight - 96
|
||||
if height >= newheight:
|
||||
newgeom = ""
|
||||
else:
|
||||
newgeom = "%dx%d+%d+%d" % (width, newheight, x, newy)
|
||||
top.wm_geometry(newgeom)
|
||||
|
Loading…
Reference in New Issue
Block a user