Revert "Merge pull request #15 from cyberpwnn/performance-passes"

This reverts commit e530e30878.
This commit is contained in:
Dan
2020-10-16 01:57:47 -04:00
committed by Daniel Mills
parent e530e30878
commit 1a7aa1218a
23 changed files with 97 additions and 91 deletions

View File

@@ -298,7 +298,7 @@ public class NoiseExplorer extends JPanel implements MouseWheelListener
NoiseExplorer nv = new NoiseExplorer();
frame.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
KList<String> li = new KList<NoiseStyle>(NoiseStyle.values()).toStringList();
combo = new JComboBox<String>(li.toArray(new String[0]));
combo = new JComboBox<String>(li.toArray(new String[li.size()]));
combo.setSelectedItem("STATIC");
combo.setFocusable(false);
combo.addActionListener(new ActionListener()