<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><br></div><div>Greg Ewing wrote:</div><div><br></div><div><meta charset="utf-8"><span class="Apple-style-span" style="font-family: Times; "><pre>> 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()</pre><pre>Added the following lines to Pixmaps.py and the code now works okay:</pre><pre> def focusStack(self):
return self.base.focusStack()
def saveGraphicsState(self):
return self.base.saveGraphicsState()
def restoreGraphicsState(self):
return self.base.restoreGraphicsState()</pre><div>Cheers</div><div>Colin</div></span></div></body></html>