Wow, I can't describe epicness of this :) Didn't know such thing existed :)<br><br><div class="gmail_quote">2011/7/1 Baz Walter <span dir="ltr"><<a href="mailto:bazwal@ftml.net">bazwal@ftml.net</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">On 30/06/11 16:56, Nathan Weston wrote:<br>
</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">
On 6/30/2011 10:44 AM, Nathan Weston wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 6/29/2011 6:16 PM, Baz Walter wrote:<br>
</blockquote></div><div class="im">
I updated to the latest Qt/PyQt and it's working now. My original<br>
application is working correctly as well.<br>
</div></blockquote>
<br>
glad you got it working.<br>
<br>
one final thought: rather stupidly, i completely forgot about QEvent.ShortcutOverride, which may well be exactly what you were originally looking for.<br>
<br>
it could be used something like this:<br>
<br>
    def event(self, event):<br>
        if (not self._editable and<br>
            event.type() == QEvent.ShortcutOverride):<br>
            return False<br>
        return QLineEdit.event(self, event)<br>
<br>
better late than never, i suppose :/<div><div class="h5"><br>
_______________________________________________<br>
PyQt mailing list    <a href="mailto:PyQt@riverbankcomputing.com" target="_blank">PyQt@riverbankcomputing.com</a><br>
<a href="http://www.riverbankcomputing.com/mailman/listinfo/pyqt" target="_blank">http://www.riverbankcomputing.com/mailman/listinfo/pyqt</a><br>
</div></div></blockquote></div><br>