Skip to content

Commit

Permalink
Merge pull request #779 from ajdunlap/patch-1
Browse files Browse the repository at this point in the history
Call QCoreApplication.processEvents() after writing to Python console. Fix #8343
  • Loading branch information
NathanW2 committed Jul 31, 2013
2 parents b9c9ec4 + 3aad6df commit 1302ecb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/console/console_output.py
Expand Up @@ -52,6 +52,7 @@ def write(self, m):
self.out.write(m)

self.move_cursor_to_end()
QCoreApplication.processEvents()

def move_cursor_to_end(self):
"""Move cursor to end of text"""
Expand Down

0 comments on commit 1302ecb

Please sign in to comment.