[pypy-svn] r7273 - pypy/trunk/src/pypy/translator/tool/pygame

mgedmin at codespeak.net mgedmin at codespeak.net
Tue Nov 16 11:34:27 CET 2004


Author: mgedmin
Date: Tue Nov 16 11:34:27 2004
New Revision: 7273

Modified:
   pypy/trunk/src/pypy/translator/tool/pygame/graphdisplay.py
Log:
Fixed status line message -- now Left is used for panning, and Backspace (or
Alt+Left) is used for going back.



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:34:27 2004
@@ -145,7 +145,7 @@
         self.statusbarinfo = None
         self.must_redraw = True
         if self.viewers_history:
-            info = 'Press Left Arrow to go back to previous screen'
+            info = 'Press Backspace to go back to previous screen'
         else:
             info = ('Click to move around, or drag mouse buttons '
                     '(left to zoom, right to scroll)')



More information about the Pypy-commit mailing list