Author: Tim Felgentreff <[email protected]>
Branch:
Changeset: r272:5a6e9e1ccea6
Date: 2013-04-16 10:07 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/5a6e9e1ccea6/
Log: fix cursor width
diff --git a/spyvm/display.py b/spyvm/display.py
--- a/spyvm/display.py
+++ b/spyvm/display.py
@@ -133,7 +133,7 @@
data = self.words_to_bytes(len(data_words) * 4, data_words)
try:
mask = self.words_to_bytes(len(data_words) * 4, mask_words)
- self.cursor = RSDL.CreateCursor(data, mask, w, h, x, y)
+ self.cursor = RSDL.CreateCursor(data, mask, w * 2, h, x, y)
self.has_cursor = True
RSDL.SetCursor(self.cursor)
finally:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit