View | Details | Raw Unified | Return to bug 457691
Collapse All | Expand All

(-)src/YQLogView.cc (-1 / +1 lines)
Lines 71-77 Link Here
71
void
71
void
72
YQLogView::displayLogText( const string & text )
72
YQLogView::displayLogText( const string & text )
73
{
73
{
74
    _qt_text->setText( fromUTF8( text ) );
74
    _qt_text->setPlainText( fromUTF8( text ) );
75
    QScrollBar *sb = _qt_text->verticalScrollBar();
75
    QScrollBar *sb = _qt_text->verticalScrollBar();
76
    sb->setValue( sb->maximum() );
76
    sb->setValue( sb->maximum() );
77
}
77
}

Return to bug 457691