Skip to content

Commit b66a643

Browse files
authored
Merge pull request #7344 from m-kuhn/console_no_immediate_print
Make console printing safe again
2 parents 497637b + ae192e8 commit b66a643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/console/console_output.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def write(self, m):
6161
self.move_cursor_to_end()
6262

6363
if self.style != "_traceback":
64-
QCoreApplication.processEvents()
64+
self.sO.repaint()
6565

6666
if self.fire_keyboard_interrupt:
6767
self.fire_keyboard_interrupt = False

0 commit comments

Comments
 (0)