Spinner background color not set correctly
Status: Beta
Brought to you by:
umrzyk
Please see the code for the LipstikSpinnerUI.java source at:
On line 84, the editor background is set to "Spinner.background":
editor.setBackground(UIManager.getColor("Spinner.background"));
In a JSpinner, the editor is a text component, so the background should be set to "text":
editor.setBackground(UIManager.getColor("text"));