How can I autoscroll to the bottom of my QTextEdit
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)