fix bug with underlining on timeline

This commit is contained in:
itsmattkc
2021-01-18 16:06:40 +11:00
parent 20ed087aad
commit 2a51853fd4
@@ -431,7 +431,7 @@ void TimelineView::DrawBlocks(QPainter *painter, bool foreground)
int underline_y = text_rect.y() + text_height;
painter->drawLine(text_rect.x(), underline_y, text_width, underline_y);
painter->drawLine(text_rect.x(), underline_y, text_width + text_rect.x(), underline_y);
}
qreal line_bottom = block_top+block_height-1;