Congrats and thanks,
will there be windows binaries for Py2.7 coming to sourceforge?
RuiDC
--
View this message in context:
http://python.6.x6.nabble.com/ANN-PyQt-v5-0-Released-tp5021558p5021578.html
Sent from the PyQt mailing list archive at Nabble.com
Any ETA for the windows binaries?
also, is there a way to download previous versions via the website?
Thanks in advance,
RuiDC
--
View this message in context:
http://python.6.n6.nabble.com/ANN-PyQt-v4-9-3-Released-tp4979387p4979592.html
Sent from the PyQt mailing list archive at Nabble.com
fantastic!,
that was exactly the penny drop I was missing!
Lessons learned:
1. Don't hook handler for destroyed signal onto the object being destroyed.
(seems obvious in retrospect)
2. QDialog.accept() does not fire closeEvent, even though it does get
destroyed - bug or documentation is mislead
The question & code are here:
http://stackoverflow.com/questions/5570402/why-do-closeevent-and-destroyed-slot-not-get-called-on-accepting-pyqt4-qdialog
but hopefully someone here can give me an answer on:
1. how to get the closeEvent to fire from accepting (or do I have to do a
self.close()?)
2.