]> ruin.nu Git - moosique.git/blobdiff - MooGUI.java
Fixed a play thread that almost works
[moosique.git] / MooGUI.java
index 17af222417e4ffb4b7dbdb3dfabdb6be7e130b74..065267eec3e8e04a48723d15311b4b2edef03d0c 100644 (file)
@@ -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 {