<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>&gt; Can you please try adding the following method to class
&gt; FlippedNSGraphicsContext in GUI/Cocoa/Pixmap.py and tell me
&gt; whether it fixes the problem for you?
&gt;
&gt;    def focusStack(self):
&gt;      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>