]> ruin.nu Git - moosique.git/commitdiff
stuff
authorMichael Andreen <harv@ruin.nu>
Tue, 13 May 2003 17:30:28 +0000 (17:30 +0000)
committerMichael Andreen <harv@ruin.nu>
Tue, 13 May 2003 17:30:28 +0000 (17:30 +0000)
MooGUI.java
MooTrackTitle.java
MooView.java

index 065267eec3e8e04a48723d15311b4b2edef03d0c..16709f50ae1da561d024fa5b61db6452e44395c2 100644 (file)
@@ -25,6 +25,7 @@ public class MooGUI extends JFrame {
        public MooGUI(Sequence seq) {
                super("Moosique");
 
+
                this.seq = seq;
                
                Container pane = getContentPane();
@@ -124,4 +125,4 @@ public class MooGUI extends JFrame {
                        Moosique.quit();
                }
        }
-}
\ No newline at end of file
+}
index a17c071eb90cd0d8dd841e88ffdba5663b6ced30..cc17d170e620995ab22639fbec80b23db9e380a0 100644 (file)
@@ -28,6 +28,7 @@ public class MooTrackTitle extends JPanel {
         * Creates the title bar.
         */
        public MooTrackTitle (Track aTrack, int aTrackNum) {
+               setDoubleBuffered(true);
                track = aTrack;
                this.trackNum = aTrackNum;
 
index a5ceea42b9f5646924d9004b4caeab0d6a9eacd3..146738d55ea50db6b83c5f69e27bc9635dda6cdf 100644 (file)
@@ -37,6 +37,7 @@ public class MooView extends JScrollPane {
         * @param tracks        the tracks for which to add views
         */
        public void setTracks(Track[] tracks) {
+               setDoubleBuffered(true);
                numberOfTracks = tracks.length;
                trackPanel.removeAll();
                titlePanel.removeAll();