X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooInstrumentList.java;h=6f0211fa4931784707135b2bf4c92c048d014244;hb=5c3064893cb97b93312138749761b24283d23caf;hp=3e538d489d9b7edc672984addd0f5e077839d8aa;hpb=4ac3b6210979ea78dceb609a0501cb0265d00065;p=moosique.git diff --git a/MooInstrumentList.java b/MooInstrumentList.java index 3e538d4..6f0211f 100644 --- a/MooInstrumentList.java +++ b/MooInstrumentList.java @@ -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); }