From: Jack Jansen Date: Mon, 23 Sep 1996 15:51:06 +0000 (+0000) Subject: About boxes should be at 20% of screen height, not halfway X-Git-Tag: v1.4~176 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e06e7e7d5c3d7d533340cb5c2d372bcb4f5b096;p=python About boxes should be at 20% of screen height, not halfway --- diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index df646ea904..f996f4a6fd 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);