[pypy-svn] r7271 - pypy/trunk/src/pypy/translator/tool/pygame
mgedmin at codespeak.net
mgedmin at codespeak.net
Tue Nov 16 11:29:52 CET 2004
Author: mgedmin
Date: Tue Nov 16 11:29:52 2004
New Revision: 7271
Modified:
pypy/trunk/src/pypy/translator/tool/pygame/graphdisplay.py
Log:
Changed the default size of the pygame window to 800x680 -- 800x740 is a bit
too small for us poor folks with 1024x768 screens with two 24-pixel high GNOME
panels.
Modified: pypy/trunk/src/pypy/translator/tool/pygame/graphdisplay.py
==============================================================================
--- pypy/trunk/src/pypy/translator/tool/pygame/graphdisplay.py (original)
+++ pypy/trunk/src/pypy/translator/tool/pygame/graphdisplay.py Tue Nov 16 11:29:52 2004
@@ -26,7 +26,7 @@
class Display(object):
- def __init__(self, (w,h)=(800,740)):
+ def __init__(self, (w,h)=(800,680)):
pygame.init()
self.resize((w,h))
More information about the Pypy-commit
mailing list