From 02b82c1a86373ba4431a63eea23b2d59ed7f209b Mon Sep 17 00:00:00 2001 From: Jeff Wallace Date: Fri, 30 Aug 2013 13:13:19 -0400 Subject: [PATCH] Changed LNF to more modern Nimbus. --- Core/src/org/sleuthkit/autopsy/corecomponents/Installer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/corecomponents/Installer.java b/Core/src/org/sleuthkit/autopsy/corecomponents/Installer.java index f6ab3e5b57..ecf5b847b7 100644 --- a/Core/src/org/sleuthkit/autopsy/corecomponents/Installer.java +++ b/Core/src/org/sleuthkit/autopsy/corecomponents/Installer.java @@ -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 |