Shell.py: Fixed __raw_input() writing at the wrong position sometimes.

Sat, 01 Feb 2020 17:25:30 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 01 Feb 2020 17:25:30 +0100
changeset 7378
e44a53a41b5d
parent 7370
5fb53279f2df
child 7380
c99320e859ca

Shell.py: Fixed __raw_input() writing at the wrong position sometimes.

eric6/QScintilla/Shell.py file | annotate | diff | comparison | revisions
--- a/eric6/QScintilla/Shell.py	Mon Jan 13 19:23:08 2020 +0100
+++ b/eric6/QScintilla/Shell.py	Sat Feb 01 17:25:30 2020 +0100
@@ -1044,7 +1044,7 @@
         self.setFocus()
         self.inRawMode = True
         self.echoInput = echo
-        self.__write(s)
+        self.__writeQueued(s)
         line, col = self.__getEndPos()
         self.setCursorPosition(line, col)
         buf = self.text(line)

eric ide

mercurial