Changed LNF to more modern Nimbus.

This commit is contained in:
Jeff Wallace 2013-08-30 13:13:19 -04:00
parent bf60d35258
commit 02b82c1a86

View File

@ -121,7 +121,7 @@ public class Installer extends ModuleInstall {
//use Metal if available
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if ("Metal".equals(info.getName())) {
if ("Nimbus".equals(info.getName())) {
try {
UIManager.setLookAndFeel(info.getClassName());
} catch (ClassNotFoundException | InstantiationException |