Skip to content

Commit

Permalink
Make full size cursor really full size.
Browse files Browse the repository at this point in the history
  • Loading branch information
Swordfish90 committed Oct 27, 2018
1 parent f7d669c commit ddd71ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/TerminalDisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ void TerminalDisplay::drawCursor(QPainter& painter,
{
QRect cursorRect = rect;

cursorRect.setHeight(_fontHeight - ((m_full_cursor_height) ? 0 : _lineSpacing) - 1);
cursorRect.setHeight(_fontHeight - ((m_full_cursor_height) ? 0 : _lineSpacing - 1));

if (!_cursorBlinking)
{
Expand Down

0 comments on commit ddd71ac

Please sign in to comment.