Skip to content

Commit

Permalink
Update menu to remove test blocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary Worsham committed Apr 1, 2024
1 parent 2208720 commit 20b5e76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 22 deletions.
20 changes: 0 additions & 20 deletions src-gen/com/holycityaudio/SpinCAD/standardMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
import com.holycityaudio.SpinCAD.CADBlocks.MinReverb2CADBlock;
import com.holycityaudio.SpinCAD.CADBlocks.reverb_roomCADBlock;
import com.holycityaudio.SpinCAD.CADBlocks.reverb_hallCADBlock;
import com.holycityaudio.SpinCAD.CADBlocks.Ted_Rev_ReverbCADBlock;
import com.holycityaudio.SpinCAD.CADBlocks.rom_rev1CADBlock;
import com.holycityaudio.SpinCAD.CADBlocks.rom_rev2CADBlock;
import com.holycityaudio.SpinCAD.CADBlocks.reverbCADBlock;
Expand Down Expand Up @@ -97,7 +96,6 @@
import com.holycityaudio.SpinCAD.CADBlocks.LogCADBlock;
import com.holycityaudio.SpinCAD.CADBlocks.RootCADBlock;
import com.holycityaudio.SpinCAD.CADBlocks.ConstantCADBlock;
import com.holycityaudio.SpinCAD.CADBlocks.ControlPanelTestCADBlock;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
Expand Down Expand Up @@ -562,15 +560,6 @@ public void actionPerformed(ActionEvent e) {
});
mn_reverb.add(mntm_reverb_hall);

final JMenuItem mntm_Ted_Rev_Reverb = new JMenuItem("Ted Reverb");
mntm_Ted_Rev_Reverb.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
SpinCADBlock pcB = new Ted_Rev_ReverbCADBlock(50, 100);
f.dropBlock(panel, pcB);
}
});
mn_reverb.add(mntm_Ted_Rev_Reverb);

final JMenuItem mntm_rom_rev1 = new JMenuItem("ROM Reverb 1");
mntm_rom_rev1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Expand Down Expand Up @@ -1015,14 +1004,5 @@ public void actionPerformed(ActionEvent e) {
});
mn_instructions.add(mntm_Constant);

final JMenuItem mntm_ControlPanelTest = new JMenuItem("Control Panel Test");
mntm_ControlPanelTest.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
SpinCADBlock pcB = new ControlPanelTestCADBlock(50, 100);
f.dropBlock(panel, pcB);
}
});
mn_instructions.add(mntm_ControlPanelTest);

}
}
4 changes: 2 additions & 2 deletions src/SpinCADBuilder/standard.spincadmenu
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
@menuitem "Small Reverb 2" MinReverb2
@menuitem "Room Reverb" reverb_room
@menuitem "Hall Reverb" reverb_hall
@menuitem "Ted Reverb" Ted_Rev_Reverb
// @menuitem "Ted Reverb" Ted_Rev_Reverb
//@menuitem "Plate Reverb" reverb_plate
//@menuitem "Reverb Plate Filters" reverb_plate_filters
// @menuitem "Gated Reverb" gated_verb
Expand Down Expand Up @@ -148,4 +148,4 @@
@menuitem "Log" Log
@menuitem "Root" Root
@menuitem "Constant" Constant
@menuitem "Control Panel Test" ControlPanelTest
// @menuitem "Control Panel Test" ControlPanelTest

0 comments on commit 20b5e76

Please sign in to comment.