]> ruin.nu Git - moosique.git/blobdiff - MooInstrumentList.java
*** empty log message ***
[moosique.git] / MooInstrumentList.java
index 3e538d489d9b7edc672984addd0f5e077839d8aa..6f0211fa4931784707135b2bf4c92c048d014244 100644 (file)
@@ -1,8 +1,9 @@
 import javax.sound.midi.*;
 import javax.swing.*;
+import java.awt.*;
 import java.awt.event.*;
 
-/*
+/**
  * A Combo Box where the instrument of the currently active channel can be selected.
  * 
  * @author  Einar Pehrson
@@ -12,6 +13,7 @@ public class MooInstrumentList extends JComboBox implements ActionListener {
 
        public MooInstrumentList() {
                super(instruments);
+               setFont(new Font("Times New Roman", Font.PLAIN, 10));
                addActionListener(this);
        }