Saturday, 24 August 2013

How to disable an eventHandler in pyqt?

How to disable an eventHandler in pyqt?

I need to disable the textChanged()-Signal of a QTextBrowser if I need to.
I want to do this because of this: Typing in a qtextbrowser, then through
the connection of textChanged() in realtime formating the content, and
re-setting it into the qtextbrowser triggers textChanged() and this again
the realtime formatting ... infinite loop. So I need to disable that the
formatting triggers textChanged().
How do I do this in pyqt4?

No comments:

Post a Comment