Greg Ewing wrote:
> Can you please try adding the following method to class
> FlippedNSGraphicsContext in GUI/Cocoa/Pixmap.py and tell me
> whether it fixes the problem for you?
>
> def focusStack(self):
> return self.base.focusStack()
Added the following lines to Pixmaps.py and the code now works okay:
def focusStack(self):
return self.base.focusStack()
def saveGraphicsState(self):
return self.base.saveGraphicsState()
def restoreGraphicsState(self):
return self.base.restoreGraphicsState()
Cheers
Colin_______________________________________________
Pygui mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pygui