How can I autoscroll to the bottom of my QTextEdit
in my GUI init function
self.mytext = QTextEdit()
self.cursor = QTextCur
moveCursor method should do that. e.g.:
self.mytext.moveCursor(QtGui.QTextCursor.End)
self.mytext.ensureCursorVisible()
I've found the following to work:
from PyQt4 import QtGui
self.display = QtGui.QTextBrowser()
self.display.verticalScrollBar().setValue(
self.display.verticalScrollBar().maximum())
Good luck!