diff options
author | Just van Rossum <just@lettererror.com> | 2000-10-20 07:49:00 (GMT) |
---|---|---|
committer | Just van Rossum <just@lettererror.com> | 2000-10-20 07:49:00 (GMT) |
commit | ff88e460aa1d24c5c44028fef26b65e0b4a27fa5 (patch) | |
tree | d25206049ed7fb7658c01e3fa2b7ee4ddb22242b /Mac/Tools | |
parent | 17f944b6f3ec2766b2e402517248625f16188182 (diff) | |
download | cpython-ff88e460aa1d24c5c44028fef26b65e0b4a27fa5.zip cpython-ff88e460aa1d24c5c44028fef26b65e0b4a27fa5.tar.gz cpython-ff88e460aa1d24c5c44028fef26b65e0b4a27fa5.tar.bz2 |
more edits to make the text fit (jvr)
Diffstat (limited to 'Mac/Tools')
-rw-r--r-- | Mac/Tools/IDE/Splash.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Mac/Tools/IDE/Splash.py b/Mac/Tools/IDE/Splash.py index d8ccb2b..21acd6d 100644 --- a/Mac/Tools/IDE/Splash.py +++ b/Mac/Tools/IDE/Splash.py @@ -32,17 +32,17 @@ def importing(module): fontID = geneva Qd.TextFont(fontID) Qd.TextSize(9) - rect = (35, 260, 365, 276) + rect = (35, 265, 365, 281) if module: TE.TETextBox('Importing: ' + module, rect, 0) if not _progress: - Qd.FrameRect((35, 276, 365, 284)) + Qd.FrameRect((35, 281, 365, 289)) pos = min(36 + 330 * _progress / 44, 364) - Qd.PaintRect((36, 277, pos, 283)) + Qd.PaintRect((36, 282, pos, 288)) _progress = _progress + 1 else: Qd.EraseRect(rect) - Qd.PaintRect((36, 277, pos, 283)) + Qd.PaintRect((36, 282, pos, 288)) def my__import__(name, globals=None, locals=None, fromlist=None): try: @@ -73,7 +73,6 @@ _keepsplashscreenopen = 0 abouttext1 = """The Python Integrated Development Environment for the Macintosh Version: %s Copyright 1997-2000 Just van Rossum, Letterror. <just@letterror.com> - Python %s %s See: <http://www.python.org/> for information and documentation.""" |