Hi,
I added a QTextEdit widget in read only mode as shown below, if i set the alignemt right able to add the data from the right, i tried modifying that to Qt::AlignBottom which was not working as expected. Please provide me the solution how to add the data from bottom right of QTextEdit and append the data from bottom?. means i need to scroll the data from bottom up.
log = new QTextEdit();
log->setReadOnly(true);
log->setAlignment(Qt::AlignRight);
log->setText("check");
Thanks
Madhu.




