]> ruin.nu Git - moosique.git/blobdiff - MooTrackTitle.java
no message
[moosique.git] / MooTrackTitle.java
index 0c043372f2e836806036a20f2d85593593bcf705..b32479fd43cd0fa05ff76fd2878f45cac28834e4 100644 (file)
@@ -24,6 +24,7 @@ public class MooTrackTitle extends JPanel {
                setLayout(new GridLayout(4,1));
 
                title = new JTextField(); // JTextField(String text, int columns) 
+               title.setFont(Moosique.getGUI().FONT);
                title.addFocusListener(new TitleFocusListener());
                add(title);
 
@@ -34,7 +35,7 @@ public class MooTrackTitle extends JPanel {
                checkboxes.setLayout(new GridLayout(1,3));
 
                channel = new JComboBox();
-               channel.setFont(new Font("Helvetica", Font.PLAIN, 10));
+               channel.setFont(Moosique.getGUI().FONT);
                for (int i = 1; i <= 16; i++)
                        channel.addItem(new Integer(i));
                channel.addItemListener(new ItemListener(){
@@ -48,7 +49,7 @@ public class MooTrackTitle extends JPanel {
                
 
                mute = new JCheckBox("Mute");
-               mute.setFont(new Font("Helvetica", Font.PLAIN, 10));
+               mute.setFont(Moosique.getGUI().FONT);
                mute.addActionListener(new ActionListener(){
                                public void actionPerformed(ActionEvent event){
                                        //setMute
@@ -57,7 +58,7 @@ public class MooTrackTitle extends JPanel {
                checkboxes.add(mute);
 
                solo = new JCheckBox("Solo");
-               solo.setFont(new Font("Helvetica", Font.PLAIN, 10));
+               solo.setFont(Moosique.getGUI().FONT);
                solo.addActionListener(new ActionListener(){
                                public void actionPerformed(ActionEvent event){
                                        //setSolo