Improved nonribbon interface (menu, colors)

This commit is contained in:
Jindra Petřík
2015-05-23 10:26:04 +02:00
parent 3fdc0ec946
commit dd888dd326
9 changed files with 1500 additions and 1138 deletions

View File

@@ -84,7 +84,7 @@ public class TimelineTimePanel extends JPanel implements MouseListener {
Rectangle clip = g.getClipBounds();
int start_f = (scrollOffset + clip.x) / TimelinePanel.FRAME_WIDTH;
int end_f = (scrollOffset + clip.x + clip.width) / TimelinePanel.FRAME_WIDTH;
g.setColor(TimelinePanel.backgroundColor);
g.setColor(TimelinePanel.getBackgroundColor());
g.fillRect(0, 0, getWidth(), getHeight());
g.setColor(borderColor);
int xofs = TimelinePanel.FRAME_WIDTH - scrollOffset % TimelinePanel.FRAME_WIDTH - 1;