When the text box contains too many lines, the Python console does not automatically scroll to the last line.
Example: The following commands are entered in sequence.
print("a")
print("b")
print("c")
print("d")
print("e")
print("f")
print("g")
The input box disappears after print("e"):
The following commands are entered in sequence, and the input box disappears.
To solve this issue, only the upper text box for the execution results should allow to scroll.