Checkstyle fix

This commit is contained in:
Jindra Petřík
2025-05-17 18:13:53 +02:00
parent dd49a7e73b
commit 2165425f8d
2 changed files with 1 additions and 4 deletions
@@ -101,7 +101,7 @@ public class TimelineTimePanel extends JPanel implements MouseListener {
g.setColor(borderColor);
int xofs = -scrollOffset % frameWidth;
for (int f = 0; f <= end_f; f++) {
g.drawLine(xofs + f * frameWidth + 1, TimelineBodyPanel.FRAME_HEIGHT - 1, xofs + f * frameWidth+ 1, TimelineBodyPanel.FRAME_HEIGHT - lineLength);
g.drawLine(xofs + f * frameWidth + 1, TimelineBodyPanel.FRAME_HEIGHT - 1, xofs + f * frameWidth + 1, TimelineBodyPanel.FRAME_HEIGHT - lineLength);
}
g.setFont(g.getFont().deriveFont(fontSize));
for (int f = 0; f <= end_f; f++) {