Update console_output.py

Call QCoreApplication.processEvents() after writing to Python console, enabling incremental output from Python scripts. Fixes #8343.
This commit is contained in:
Alexander J. Dunlap 2013-07-30 13:06:51 -06:00
parent b9c9ec440b
commit 3aad6df8cc

View File

@ -52,6 +52,7 @@ class writeOut:
self.out.write(m)
self.move_cursor_to_end()
QCoreApplication.processEvents()
def move_cursor_to_end(self):
"""Move cursor to end of text"""