I'm trying to change the Icon of a CheckBoxMenuItem with the Nimbus Look&Feel.
UIManager.put("CheckBoxMenuItem[Selected].checkIcon", new ImageIcon(getClass().getResource("/packagename/images/unchecked-icon.png")));
This works fine for the selected Checkbox, but what is the state of an unselected Box?
It works. Just had to use the right order!