How can I autoscroll to the bottom of my QTextEdit
QTextEdit
in my GUI init function
self.mytext = QTextEdit() self.cursor = QTextCur
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!