Commit 07785891 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Small correction on messages behaviour Ref #777

parent 34fb52f0
......@@ -83,9 +83,10 @@ void MessagesDialog::updateLog()
int i_stop = *p_sub->pi_stop;
vlc_mutex_unlock( p_sub->p_lock );
messages->textCursor().movePosition( QTextCursor::End );
if( p_sub->i_start != i_stop )
{
messages->textCursor().movePosition( QTextCursor::End );
for( i_start = p_sub->i_start;
i_start != i_stop;
i_start = (i_start+1) % VLC_MSG_QSIZE )
......
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