Fix for block highlighting on the folding bar: cover the entire

paragraph, even when it has several lines.
This commit is contained in:
mae
2009-08-03 18:13:37 +02:00
parent 2b739a6b9e
commit cfc10eb0bc

View File

@@ -2440,7 +2440,7 @@ void BaseTextEditor::extraAreaPaintEvent(QPaintEvent *e)
int boxWidth = collapseBoxWidth(fm);
if (hovered) {
QRect box = QRect(extraAreaWidth + 1, top, boxWidth - 2, fmLineSpacing + 2);
QRect box = QRect(extraAreaWidth + 1, top, boxWidth - 2, bottom - top);
drawRectBox(&painter, box, drawStart, drawEnd, pal);
}