Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ff88e46

Browse files
author
Just van Rossum
committed
more edits to make the text fit (jvr)
1 parent 17f944b commit ff88e46

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

Mac/Tools/IDE/Splash.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ def importing(module):
3232
fontID = geneva
3333
Qd.TextFont(fontID)
3434
Qd.TextSize(9)
35-
rect = (35, 260, 365, 276)
35+
rect = (35, 265, 365, 281)
3636
if module:
3737
TE.TETextBox('Importing: ' + module, rect, 0)
3838
if not _progress:
39-
Qd.FrameRect((35, 276, 365, 284))
39+
Qd.FrameRect((35, 281, 365, 289))
4040
pos = min(36 + 330 * _progress / 44, 364)
41-
Qd.PaintRect((36, 277, pos, 283))
41+
Qd.PaintRect((36, 282, pos, 288))
4242
_progress = _progress + 1
4343
else:
4444
Qd.EraseRect(rect)
45-
Qd.PaintRect((36, 277, pos, 283))
45+
Qd.PaintRect((36, 282, pos, 288))
4646

4747
def my__import__(name, globals=None, locals=None, fromlist=None):
4848
try:
@@ -73,7 +73,6 @@ def my__import__(name, globals=None, locals=None, fromlist=None):
7373
abouttext1 = """The Python Integrated Development Environment for the Macintosh
7474
Version: %s
7575
Copyright 1997-2000 Just van Rossum, Letterror. <[email protected]>
76-
7776
Python %s
7877
%s
7978
See: <http://www.python.org/> for information and documentation."""

0 commit comments

Comments
 (0)