Skip to content

Commit ae192e8

Browse files
committedJul 2, 2018
Make console printing safe
References #8343 https://issues.qgis.org/issues/8343
1 parent 7e7faad commit ae192e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/console/console_output.py

Lines changed: 1 addition & 1 deletion
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)
Please sign in to comment.