X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooGUI.java;fp=MooGUI.java;h=065267eec3e8e04a48723d15311b4b2edef03d0c;hb=5380690b9fc56b683d15765382669d79c50d3414;hp=17af222417e4ffb4b7dbdb3dfabdb6be7e130b74;hpb=b6312d2dc8b1a096ecb1dfe9e6590d9f7bf14f71;p=moosique.git diff --git a/MooGUI.java b/MooGUI.java index 17af222..065267e 100644 --- a/MooGUI.java +++ b/MooGUI.java @@ -114,9 +114,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 {