gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/trunk r10777: Fix call to render


From: Sandro Santilli
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r10777: Fix call to render
Date: Mon, 06 Apr 2009 11:55:48 +0200
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10777
committer: Sandro Santilli <address@hidden>
branch nick: trunk
timestamp: Mon 2009-04-06 11:55:48 +0200
message:
  Fix call to render
modified:
  pythonmodule/gnashPythonExample.py
=== modified file 'pythonmodule/gnashPythonExample.py'
--- a/pythonmodule/gnashPythonExample.py        2009-04-06 09:53:00 +0000
+++ b/pythonmodule/gnashPythonExample.py        2009-04-06 09:55:48 +0000
@@ -104,12 +104,12 @@
 # Move the pointer to the specified co-ordinates. Returns true if the
 # action requires a redraw.
 if player.movePointer(10,20):
-    render(False)
+    player.render(False)
 
 # Click the mouse at the current pointer position. True if the action
 # requires a redraw.
 if player.mouseClick():
-    render(False)
+    player.render(False)
 
 
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]