X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooTrackTitle.java;h=b32479fd43cd0fa05ff76fd2878f45cac28834e4;hb=cd7d6166d73969c1c811ac7153cc6eee59a6a685;hp=0c043372f2e836806036a20f2d85593593bcf705;hpb=ad775fd8d2b8086e180ecc069c00c775b84cedd7;p=moosique.git diff --git a/MooTrackTitle.java b/MooTrackTitle.java index 0c04337..b32479f 100644 --- a/MooTrackTitle.java +++ b/MooTrackTitle.java @@ -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