mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 03:50:44 +00:00
Checkstyle fix
This commit is contained in:
@@ -962,9 +962,6 @@ public class TimelineBodyPanel extends JPanel implements MouseListener, KeyListe
|
||||
DepthState ds = null;
|
||||
|
||||
if (!(timelined instanceof ButtonTag) && fframe >= timelined.getFrameCount()) {
|
||||
if (timelined instanceof ButtonTag) {
|
||||
|
||||
}
|
||||
int lastFrame = timelined.getFrameCount() - 1;
|
||||
for (int d = 1; d <= timeline.maxDepth; d++) {
|
||||
ds = timeline.getDepthState(lastFrame, d);
|
||||
|
||||
@@ -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++) {
|
||||
|
||||
Reference in New Issue
Block a user