diff --git a/src/uk/co/majenko/audiobookrecorder/AudiobookRecorder.java b/src/uk/co/majenko/audiobookrecorder/AudiobookRecorder.java index d4b7a81..2971001 100644 --- a/src/uk/co/majenko/audiobookrecorder/AudiobookRecorder.java +++ b/src/uk/co/majenko/audiobookrecorder/AudiobookRecorder.java @@ -300,21 +300,19 @@ public class AudiobookRecorder extends JFrame { try { -// String clsname = "com.jtattoo.plaf.hifi.HiFiLookAndFeel"; -// UIManager.setLookAndFeel(clsname); - -// Properties p = new Properties(); -// p.put("windowDecoration", "off"); -// p.put("logoString", "Audiobook"); -// p.put("textAntiAliasing", "on"); - -// Class cls = Class.forName(clsname); -// Class[] cArg = new Class[1]; -// cArg[0] = Properties.class; -// Method mth = cls.getMethod("setCurrentTheme", cArg); -// mth.invoke(cls, p); + String clsname = "com.jtattoo.plaf.hifi.HiFiLookAndFeel"; + UIManager.setLookAndFeel(clsname); + Properties p = new Properties(); + p.put("windowDecoration", "off"); + p.put("logoString", "Audiobook"); + p.put("textAntiAliasing", "on"); + Class cls = Class.forName(clsname); + Class[] cArg = new Class[1]; + cArg[0] = Properties.class; + Method mth = cls.getMethod("setCurrentTheme", cArg); + mth.invoke(cls, p); } catch (Exception e) { e.printStackTrace();