I have a JComboBox
that is declared with:
JComboBox<String> toneList = new JComboBox<>(tones); //tones is a String[] list
And is added with:
panel.add(toneList);
window.add(panel);
But the issue is that it looks old and just generally looks bad. This is what it currently looks like.
I want it to look like this, which looks more modern.
Is there a Look and Feel that achieves this or is the second one actually something else?