Skip to content

Commit

Permalink
[fingerterm] Colorize the end of lines with the background color. Con…
Browse files Browse the repository at this point in the history
…tributes to JB#53070
  • Loading branch information
dcaliste committed May 7, 2021
1 parent 2563831 commit eaf845b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions textrender.cpp
Expand Up @@ -209,6 +209,8 @@ void TextRender::paintFromBuffer(QPainter* painter, QList<QList<TermChar> >& buf
currAttrib.fgColor = nextAttrib.fgColor;
}
}
if (currentX < sTerm->columns() * iFontWidth)
drawBgFragment(painter, currentX, y-iFontHeight+iFontDescent, sTerm->columns() * iFontWidth - currentX, currAttrib);

// text for the current line
QString line;
Expand Down

0 comments on commit eaf845b

Please sign in to comment.