summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-09-23 15:51:06 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-09-23 15:51:06 (GMT)
commit0e06e7e7d5c3d7d533340cb5c2d372bcb4f5b096 (patch)
tree241c54067e5b9c2e321849ddfaef49dc0265542b /Mac
parent04df9d5ad4a85cbab59b7a5e78756b9d7a475fd8 (diff)
downloadcpython-0e06e7e7d5c3d7d533340cb5c2d372bcb4f5b096.zip
cpython-0e06e7e7d5c3d7d533340cb5c2d372bcb4f5b096.tar.gz
cpython-0e06e7e7d5c3d7d533340cb5c2d372bcb4f5b096.tar.bz2
About boxes should be at 20% of screen height, not halfway
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Python/macglue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c
index df646ea..f996f4a 100644
--- a/Mac/Python/macglue.c
+++ b/Mac/Python/macglue.c
@@ -557,7 +557,7 @@ SIOUXDoAboutBox(void)
swidth = qd.screenBits.bounds.right - qd.screenBits.bounds.left;
sheight = qd.screenBits.bounds.bottom - qd.screenBits.bounds.top - LMGetMBarHeight();
xpos = (swidth-width)/2;
- ypos = (sheight-height)/2 + LMGetMBarHeight();
+ ypos = (sheight-height)/5 + LMGetMBarHeight();
MoveWindow(theWindow, xpos, ypos, 0);
ShowWindow(theWindow);
ModalDialog(NULL, &item);