Hey guys,

I'm just beginning with Qt, obviously thats why i'm in the newbie section.

I have a QPlainTextEdit widget in my dialog. Occasionally I added text with the appendPlainText() function. After a while the vertical scroll bar shows up. However it does not automatically scroll to show the latest appendPlainText() data.

What would you suggest to do to make sure the QPlainTextEdit is always scrolled down at the bottom after appending data?

I noticed there is a scroll(dx, dy) function. However, I was hopping I could do an absolute scroll to the end, and it would scroll all the way to the bottom? Is there a better way?

Thanks.