From: <hep...@us...> - 2011-03-03 04:25:40
|
Revision: 1269 http://qterm.svn.sourceforge.net/qterm/?rev=1269&view=rev Author: hephooey Date: 2011-03-03 04:25:34 +0000 (Thu, 03 Mar 2011) Log Message: ----------- Paint the text after we get the blink area Modified Paths: -------------- trunk/qterm-qt4/src/qtermscreen.cpp Modified: trunk/qterm-qt4/src/qtermscreen.cpp =================================================================== --- trunk/qterm-qt4/src/qtermscreen.cpp 2011-03-03 04:25:29 UTC (rev 1268) +++ trunk/qterm-qt4/src/qtermscreen.cpp 2011-03-03 04:25:34 UTC (rev 1269) @@ -722,11 +722,6 @@ return; } - if (m_ePaintState == Show) { - drawLine(painter, index, 0, -1); - continue; - } - TextLine *pTextLine = m_pBuffer->at(index); if (pTextLine->hasBlink()) { m_hasBlink = true; @@ -743,6 +738,12 @@ } } else m_pBlinkLine[index - m_nStart] = false; + + if (m_ePaintState == Show) { + drawLine(painter, index, 0, -1); + continue; + } + if (!pTextLine->isChanged(startx, endx)) continue; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |