1
0
Fork 0

Move the header separator one pixel down

This commit is contained in:
Duncan Ogilvie 2023-09-21 00:47:54 +02:00
parent 3beec936ec
commit c65c956f85
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ void AbstractTableView::paintEvent(QPaintEvent* event)
painter.setPen(separatorPen);
}
painter.drawLine(x, y + height - separatorPen.width(), x + width - separatorPen.width(), y + height - separatorPen.width());
painter.drawLine(x, y + height - separatorPen.width() + 1, x + width - separatorPen.width(), y + height - separatorPen.width() + 1);
painter.drawLine(x + width - separatorPen.width() + 1, y, x + width - separatorPen.width() + 1, y + height - separatorPen.width());
x += width;