Commit 016a90f1 authored by Rémi Duraffort's avatar Rémi Duraffort

Qt4_message: when the cursor it at the end, scroll down automatically.

parent 0333e0c5
......@@ -182,6 +182,8 @@ void MessagesDialog::sinkMessage (msg_item_t *item, unsigned)
int endPos = messages->textCursor().selectionEnd();
messages->moveCursor( QTextCursor::End );
if( startPos == endPos && messages->textCursor().selectionEnd() == endPos )
endPos = 0;
messages->setFontItalic( true );
messages->setTextColor( "darkBlue" );
messages->insertPlainText( qfu( item->psz_module ) );
......@@ -215,11 +217,18 @@ void MessagesDialog::sinkMessage (msg_item_t *item, unsigned)
messages->ensureCursorVisible();
// Restoring saved cursor selection
// If the cursor was at this end, put it at the end,
// so we don't need to scroll down.
if( endPos == 0 )
messages->moveCursor( QTextCursor::End );
else
{
QTextCursor cur = messages->textCursor();
cur.movePosition( QTextCursor::Start );
cur.movePosition( QTextCursor::NextCharacter, QTextCursor::MoveAnchor, startPos );
cur.movePosition( QTextCursor::NextCharacter, QTextCursor::KeepAnchor, endPos - startPos );
messages->setTextCursor( cur );
}
}
void MessagesDialog::customEvent( QEvent *event )
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment