diff options
author | Guido van Rossum <guido@python.org> | 1993-03-17 12:11:47 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-03-17 12:11:47 (GMT) |
commit | aff9470d23473243d1ca05a5beffa0e84d92a370 (patch) | |
tree | 9723f3f6b6cef73bd3169daa062793592983c71d | |
parent | 7bbceea6a9ad3d59e6cfcfefedf231b04892006b (diff) | |
download | cpython-aff9470d23473243d1ca05a5beffa0e84d92a370.zip cpython-aff9470d23473243d1ca05a5beffa0e84d92a370.tar.gz cpython-aff9470d23473243d1ca05a5beffa0e84d92a370.tar.bz2 |
Fixed watch cursor origin
-rwxr-xr-x | Demo/sgi/video/watchcursor.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Demo/sgi/video/watchcursor.py b/Demo/sgi/video/watchcursor.py index 650df6a..aae3f85 100755 --- a/Demo/sgi/video/watchcursor.py +++ b/Demo/sgi/video/watchcursor.py @@ -33,6 +33,7 @@ watch.reverse() # Turn it upside-down def defwatch(index): import gl gl.defcursor(index, watch*8) + gl.curorigin(index, 8, 8) def test(): import gl |