I have a simple QtextEdit form which i am using as a sort of log. Events are written down into the form, so user can review history events. I am using textEdit.append() to add new lines to the form. However textEdit.append() , append the text on bottom of the buffer, so the newest events are shown on the bottom, Is there any reasonable way to append on top, so newest events are shown on the top ?
Thanks.