]> ruin.nu Git - moosique.git/blobdiff - MooInstrumentList.java
Fixed MooGUI's windowlistener and changed the font of MooInstrumentList
[moosique.git] / MooInstrumentList.java
index 3e538d489d9b7edc672984addd0f5e077839d8aa..1864b690d4345fef3e3754f8cff86010045af513 100644 (file)
@@ -1,5 +1,6 @@
 import javax.sound.midi.*;
 import javax.swing.*;
+import java.awt.*;
 import java.awt.event.*;
 
 /*
@@ -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);
        }