X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooGUI.java;h=9f171a3a8c6a11965eb118a2b3e044af17d483eb;hb=ca56fc1424e8887b09375a52e8e02605d5dff175;hp=32285ac5191375271ec0ba593f2dddfb8cb45ac6;hpb=c83e74facf762222fe4578f175408cc50d360518;p=moosique.git diff --git a/MooGUI.java b/MooGUI.java index 32285ac..9f171a3 100644 --- a/MooGUI.java +++ b/MooGUI.java @@ -75,6 +75,7 @@ public class MooGUI extends JFrame { // Configures window. addWindowListener(new MooGUICloser()); pack(); + setIconImage(Toolkit.getDefaultToolkit().getImage("images/moose.gif")); Dimension bounds = Toolkit.getDefaultToolkit().getScreenSize(); setSize(bounds.width,bounds.height - 40); setLocation(0, 0); @@ -99,6 +100,7 @@ public class MooGUI extends JFrame { public void setSequence(Sequence sequence) { seq = sequence; view.setTracks(seq.getTracks()); + toolbar.resetProgInd(); } /** @@ -113,9 +115,9 @@ public class MooGUI extends JFrame { * Calls on the main view to update the track views, * and on the toolbar to update the progress indicator. */ - public void update(){ - view.update(); - toolbar.updateProgInd(); + public void update(long tickPosition){ + view.update(tickPosition); + toolbar.updateProgInd(tickPosition); } class MooGUICloser extends WindowAdapter {