]> ruin.nu Git - moosique.git/blobdiff - MooTrackTitle.java
some changes..
[moosique.git] / MooTrackTitle.java
index 8b3c84d1d096dd7401f41fddefd1ff2bde91cad5..ef333efc4d05894116967385dbec70687fd67b9c 100644 (file)
@@ -19,12 +19,12 @@ public class MooTrackTitle extends JPanel{
         * Creates the title bar.
         */
        public MooTrackTitle () {
-               setLayout(new GridLayout(1,3));
+               setLayout(new GridLayout(2,2));
                instruments = new MooInstrumentList();
                add(instruments);
 
                channel = new JComboBox();
-               for (int i = 0; i < 16; i++)
+               for (int i = 1; i <= 16; i++)
                        channel.addItem(new Integer(i));
                channel.addItemListener(new ItemListener(){
                                public void itemStateChanged(ItemEvent e){